blob: 89e9b47d381b67a2ee076975042967f0adf31594 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
@import 'variables';
@import 'mixins';
.form-sub-title {
flex-grow: 0;
margin-right: 30px;
}
.moderation-expanded-label {
font-weight: $font-semibold;
display: inline-block;
vertical-align: top;
text-align: right;
}
.moderation-expanded-text {
display: inline-block;
word-wrap: break-word;
::ng-deep p:last-child {
margin-bottom: 0px !important;
}
}
.screenratio {
position: relative;
width: 100%;
height: 0;
padding-bottom: 56%;
::ng-deep iframe {
position: absolute;
width: 100% !important;
height: 100% !important;
left: 0;
top: 0;
}
}
.chip {
@include chip;
}
|