28 lines
467 B
SCSS
28 lines
467 B
SCSS
.file-properties {
|
|
display: flex;
|
|
position: relative;
|
|
align-items: center;
|
|
font-size: var(--font-small);
|
|
color: var(--color-text-help);
|
|
|
|
.icon {
|
|
margin-bottom: -1px;
|
|
}
|
|
|
|
& > *:not(:last-child) {
|
|
margin-right: var(--spacing-small);
|
|
}
|
|
|
|
@media (max-width: $breakpoint-xsmall) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.file-properties--large {
|
|
flex-wrap: wrap;
|
|
margin-bottom: var(--spacing-large);
|
|
|
|
& > * {
|
|
margin-top: var(--spacing-small);
|
|
}
|
|
}
|