This repository was archived by the owner on Sep 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathPostSignInSubscription.module.scss
More file actions
92 lines (79 loc) · 1.62 KB
/
PostSignInSubscription.module.scss
File metadata and controls
92 lines (79 loc) · 1.62 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
.root {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
padding: 1.5rem;
overflow: auto;
}
.header {
display: flex;
justify-content: center;
padding: 1.5rem;
}
.logo {
max-width: 20rem;
}
.content {
margin: 3rem auto;
background-color: var(--color-bg-1);
border: 1px solid var(--border-color);
border-radius: var(--border-radius);
box-shadow: var(--dropdown-shadow);
padding: 2rem;
max-width: 50rem;
width: 100%;
}
.form {
display: flex;
flex-direction: column;
gap: 0.5rem;
margin-top: 2rem;
}
.option {
width: 100%;
display: grid;
row-gap: 0.25rem;
column-gap: 0.75rem;
padding: 1rem;
cursor: pointer;
border-radius: 0.25rem;
background-color: var(--color-bg-2);
border: 1px solid var(--border-color);
grid-template-rows: auto;
grid-template-columns: min-content auto;
grid-template-areas:
'checkbox title'
'filler message';
&:hover {
background: var(--primary-4);
border-color: var(--primary);
}
&:has(:checked) {
background: var(--primary-4);
border-color: var(--primary);
box-shadow: var(--focus-box-shadow);
}
&:has(:focus) {
box-shadow: var(--focus-box-shadow);
}
&-checkbox {
grid-area: checkbox;
}
&-title {
grid-area: title;
font-weight: bold;
}
&-message {
grid-area: message;
color: var(--text-muted);
}
}
.sub-heading {
margin-top: 1rem;
}
.footer {
margin-top: 1.5rem;
display: flex;
justify-content: flex-end;
}