31 lines
412 B
SCSS
31 lines
412 B
SCSS
@import "@Themes/constants.scss";
|
|
|
|
.root {
|
|
display: flex;
|
|
position: relative;
|
|
width: fit-content;
|
|
margin: auto;
|
|
height: 83px;
|
|
padding: 10px 16px;
|
|
|
|
.content {
|
|
margin: auto;
|
|
}
|
|
.underline {
|
|
width: 100%;
|
|
height: 3px;
|
|
background-color: $white;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
|
|
&[data-active="true"] {
|
|
background-color: $black;
|
|
}
|
|
}
|
|
|
|
&.desactivated {
|
|
cursor: not-allowed;
|
|
}
|
|
}
|