0b292850e26c131a50f4de832552ee84506ca9ce
[oweals/peertube.git] /
1 @import '_variables';
2 @import '_mixins';
3
4 .custom-row {
5   display: flex;
6   align-items: center;
7   border-bottom: 1px solid $separator-border-color;
8
9   &:first-child {
10     font-size: 16px;
11
12     & > div {
13       font-weight: $font-semibold;
14     }
15   }
16
17   & > div {
18     padding: 10px;
19     width: 350px;
20
21     &:nth-child(2) {
22       max-width: 60px !important;
23     }
24
25     @media screen and (max-width: $small-view) {
26       width: auto;
27
28       &:first-child {
29         flex-grow: 1;
30       }
31     }
32   }
33 }