1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 10:46:13 +02:00
Files
csslayout/styles/patterns/_tab.scss
Phuoc Nguyen ab1e4a12c4 feat: Tab
2022-09-21 15:56:16 +07:00

29 lines
564 B
SCSS

.tab {
/* Center the content */
align-items: center;
display: flex;
justify-content: center;
}
.tab__item {
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
padding: 0.5rem 1rem;
}
.tab__item--active {
/* Border */
border: 1px solid #d1d5db;
/* Hide the bottom border */
border-bottom-color: transparent;
/* Border radius */
border-top-left-radius: 2px;
border-top-right-radius: 2px;
}
.tab__item--inactive {
/* Has only the bottom border */
border-bottom: 1px solid #d1d5db;
}