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@use "../global-styles/variables.module.scss";
@use "../global-styles/fonts.scss";
.AuditEmailSubscriptionInput {
margin-top:calc(2*variables.$spacing);
.rows {
margin-bottom: calc(2*variables.$spacing);
}
.row {
display: inline-flex;
@media screen and (max-width: variables.$breakpoint-small) {
display: block;
}
button {
margin-bottom:0;
padding-bottom:0;
}
svg {
width:28px;
height:28px;
margin-bottom: 0;
}
}
.action-buttons {
text-align: right;
display:flex;
justify-content: flex-end;
}
}