@use '../saber/index.module.scss' as *;
@use '../Display/variables.module' as *;
.noPaddingWrapper {
position: relative;
$offset: -$saber-border-width;
left: $offset;
// margin-right: $offset;
}
.displayTitle {
padding: 10px 0;
font-size: 20px;
display: flex;
align-items: center;
position: relative;
padding-left: $display-padding-x;
padding-right: $display-padding-x;
@media (max-width: 540px) {
font-size: 14px;
padding: 6px 0;
padding-left: $display-padding-x-mobile;
padding-right: $display-padding-x-mobile;
}
@each $color in $valid-colors {
&.#{$color} {
@include saber($color, left);
}
}
&Content {
display: flex;
min-height: 36px;
align-items: center;
gap: 0 10px;
line-height: 25px;
width: 100%;
transition: 1.5s ease-in-out;
opacity: 0;
.content {
margin-left: auto;
}
&entering {
opacity: 0;
transition: 1ms ease-in-out;
}
&entered {
opacity: 1;
}
&exiting {
opacity: 0;
transition: 1ms ease-in-out;
}
&exited {
opacity: 1;
}
}
}
.imageWrapper {
img {
border-radius: 50%;
height: 70px;
width: 70px;
}
&.large {
img {
height: 112px;
width: 112px;
}
}
@media (max-width: 540px) {
img {
height: 40px;
width: 40px;
}
&.large {
img {
height: 60px;
width: 60px;
}
}
}
}
// .image {
// .circle {
// display: flex;
// padding: 5px;
// align-items: center;
// justify-content: center;
// border-radius: 67px;
// background: rgba(255, 255, 255, 0.05);
// }