mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 19:52:29 +00:00
27 lines
447 B
SCSS
27 lines
447 B
SCSS
.tabs {
|
|
border-top: 1px solid;
|
|
flex-flow: row-reverse;
|
|
font-family: $contrail;
|
|
justify-content: flex-end;
|
|
margin: 3px 0px;
|
|
position: relative;
|
|
width: 100%;
|
|
z-index: 2;
|
|
|
|
input {
|
|
opacity: 0;
|
|
position: absolute;
|
|
}
|
|
|
|
span {
|
|
padding: 1px 25px 0;
|
|
}
|
|
|
|
label {
|
|
cursor: pointer;
|
|
line-height: 17px;
|
|
margin: -1px -10px 0 0;
|
|
clip-path: polygon(0 0, 100% 0, 100% 10px, calc(100% - 10px) 100%, 0 100%);
|
|
}
|
|
}
|