mirror of
https://github.com/danbulant/dribbblish-dynamic-theme
synced 2026-05-25 21:11:58 +00:00
38 lines
781 B
SCSS
38 lines
781 B
SCSS
#dribbblish-info-container {
|
|
display: flex;
|
|
gap: 8px;
|
|
margin-right: 8px;
|
|
height: 100%;
|
|
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
|
|
& > div {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
height: 100%;
|
|
padding: 0px 8px;
|
|
color: spiceColor("sidebar-text");
|
|
background-color: spiceColor("sidebar");
|
|
border-radius: var(--sidebar-icons-border-radius);
|
|
line-height: 13px;
|
|
@include spiceFont("glue", 14px, "Medium");
|
|
|
|
&[clickable] {
|
|
cursor: pointer;
|
|
}
|
|
|
|
&[icon-only] {
|
|
padding: 0px;
|
|
aspect-ratio: 1/1;
|
|
}
|
|
|
|
& svg {
|
|
width: 1em;
|
|
height: 1em;
|
|
}
|
|
}
|
|
}
|