apple2js/js/components/css/Tabs.module.scss

25 lines
458 B
SCSS
Raw Normal View History

2022-07-14 03:34:50 +00:00
.tab {
border-top: 2px groove;
border-left: 2px groove;
border-right: 2px groove;
margin: 0 2px;
font-weight: bold;
padding: 4px;
border-radius: 4px 4px 0 0;
.selected {
background-color: #c4c1a0;
border-bottom: none;
margin-bottom: -2px;
color: #080;
}
2022-07-14 03:34:50 +00:00
}
.tabs {
display: flex;
flex-direction: row;
border-bottom: 2px groove;
margin-bottom: 6px;
2022-07-23 19:00:38 +00:00
user-select: none;
2022-07-14 03:34:50 +00:00
}