- Custom time range can now be picked - Map now shows accuracy of latest beat - Presets removed
32 lines
677 B
SCSS
32 lines
677 B
SCSS
@import '../../styles.scss';
|
|
|
|
.dwidgetwrapper {
|
|
display: flex;
|
|
height: 8.4rem;
|
|
}
|
|
|
|
.dwidget {
|
|
line-height: 0.5rem;
|
|
background-color: rgba(0, 0, 0, 0.25);
|
|
backdrop-filter: blur(30px);
|
|
width: fit-content;
|
|
padding: 1.5rem;
|
|
padding-right: 6rem !important;
|
|
border-top: 0.2rem solid $foreground-color;
|
|
border-radius: 10px;
|
|
transition: 0.1s ease-in-out;
|
|
}
|
|
.dwidget:hover {
|
|
border-top-width: 0.3rem;
|
|
background-color: rgba(0, 0, 0, 0.18);
|
|
line-height: 0.7rem;
|
|
}
|
|
|
|
.bgColor {
|
|
z-index: -1 !important;
|
|
position: absolute;
|
|
width: 8rem;
|
|
height: 1rem;
|
|
margin-left: 5px;
|
|
background-color: transparent !important;
|
|
} |