lbry-desktop/ui/scss/component/_file-properties.scss

30 lines
527 B
SCSS
Raw Normal View History

2019-06-11 20:10:58 +02:00
.file-properties {
display: flex;
position: relative;
align-items: center;
2019-11-22 22:13:00 +01:00
font-size: var(--font-small);
color: var(--color-text-help);
2020-01-29 16:26:39 +01:00
margin-left: var(--spacing-xsmall);
2019-06-11 20:10:58 +02:00
2019-06-17 22:32:38 +02:00
& > *:not(:last-child) {
margin-right: var(--spacing-small);
2019-06-11 20:10:58 +02:00
}
2019-12-18 06:27:08 +01:00
@media (max-width: $breakpoint-xsmall) {
2019-06-11 20:10:58 +02:00
display: none;
}
}
2019-06-17 22:32:38 +02:00
2020-01-29 16:26:39 +01:00
.file-properties--small {
font-size: var(--font-xsmall);
}
2019-06-17 22:32:38 +02:00
.file-properties--large {
flex-wrap: wrap;
2019-07-21 23:31:22 +02:00
margin-bottom: var(--spacing-large);
2019-06-17 22:32:38 +02:00
& > * {
margin-top: var(--spacing-small);
}
}