blob: c337979d8d771beb0a3346e54a6fd34ef1aa6c8c (
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
43
44
|
.title-page-container {
justify-content: space-between;
align-items: center;
margin-bottom: 25px;
.title-page.active, .title-page.title-page-single {
margin-bottom: unset;
}
}
.title-page-autoplay {
width: max-content;
height: max-content;
align-items: center;
span {
margin-right: 0.3rem;
text-transform: uppercase;
font-size: 85%;
font-weight: 600;
}
}
/* p-inputSwitch styles to reduce the switch size */
::ng-deep {
p-inputswitch {
height: 20px;
}
.ui-inputswitch {
width: 2.5em !important;
height: 1.45em !important;
.ui-inputswitch-slider::before {
height: 1em !important;
width: 1em !important;
}
}
.ui-inputswitch-checked .ui-inputswitch-slider::before {
transform: translateX(1em) !important;
}
}
|