Files
autonomic-block-theme/block-styles.css
Aadil Ayub ac71ee411f
All checks were successful
continuous-integration/drone/push Build is passing
make tabbed-heading block css generic
2023-08-29 16:01:38 +05:00

29 lines
596 B
CSS

/* For the "Tabbed Heading" block style */
.is-style-tabbed-heading {
display: flex;
height: 36px;
align-items: center;
border-top: 1px solid;
}
.is-style-tabbed-heading::before {
content: "";
border-bottom: 1px solid;
border-right: 1px solid;
width: 80px;
margin-right: 8px;
height: 36px;
border-top: 2px solid var(--wp--preset--color--background);
}
.is-style-tabbed-heading::after {
content: "";
border-bottom: 1px solid;
flex-grow: 1;
margin-left: 8px;
height: 36px;
border-left: 1px solid;
border-top: 2px solid var(--wp--preset--color--background);
}