-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaccount-settings.component.scss
More file actions
127 lines (109 loc) · 2.68 KB
/
account-settings.component.scss
File metadata and controls
127 lines (109 loc) · 2.68 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
@import "var";
:host {
::ng-deep {
.mat-slide-toggle {
.mat-slide-toggle-ripple {
position: relative;
}
}
.mdc-switch {
.mdc-switch__ripple {
display: none;
}
}
}
}
.p-responsive {
padding: 0 60px;
a {
text-decoration: none;
}
}
.fw-bold-custom {
font-weight: 600;
}
.action-list {
padding: 0;
&-item {
margin: 4px 0;
position: relative;
list-style: none;
border-radius: 6px;
text-decoration: none;
a {
&:hover {
cursor: pointer;
text-decoration: none;
}
}
.disabled {
color: rgb(33 37 41 / 75%);
&:hover {
cursor: not-allowed;
}
}
&--nav__active {
background: $app-color-action-list-item-default-selected-bg;
a {
font-weight: 600;
}
&::after {
position: absolute;
top: calc(50% - 12px);
left: -8px;
width: 4px;
height: 24px;
content: "";
background: $app-color-accent-fg;
border-radius: 6px;
}
}
}
&-content {
position: relative;
display: grid;
width: 100%;
padding: 6px 8px;
font-size: 14px;
font-weight: 400;
color: $app-color-fg-default;
text-align: left;
user-select: none;
background-color: transparent;
border: none;
border-radius: 6px;
transition: background 33.333ms linear;
touch-action: manipulation;
grid-template-rows: min-content;
grid-template-areas: "leadingAction leadingVisual label trailingVisual trailingAction";
grid-template-columns: min-content max-content;
align-items: start;
&:hover {
background: $app-color-action-list-item-default-selected-bg;
}
}
&-section-divider {
&:not(:empty) {
display: flex;
padding: 6px 8px;
font-size: 12px;
font-weight: 500;
color: $app-color-fg-muted;
flex-direction: column;
}
&:empty {
display: block;
height: 1px;
padding: 0;
margin: 7px -8px 8px;
list-style: none;
background: $app-color-action-list-item-inline-divider;
border: 0;
}
}
}
.content {
width: 100%;
padding: 0 45px;
background-color: $app-color-canvas-subtle;
}