-
Notifications
You must be signed in to change notification settings - Fork 352
Expand file tree
/
Copy pathribbon.module.scss
More file actions
62 lines (53 loc) · 1.04 KB
/
ribbon.module.scss
File metadata and controls
62 lines (53 loc) · 1.04 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
@use "@/libs/theme/styles/variables" as *;
@use "@/libs/theme/styles/mixins" as *;
.cta {
display: flex;
align-items: center;
justify-content: center;
font-size: 0.75rem;
line-height: 1.25rem;
color: $Neutral0;
gap: 0.375rem;
@media #{$breakpoint-dimension-xs} {
font-size: 0.875rem;
line-height: 1.375rem;
}
}
.cta__title {
display: none;
color: var(--color_fg_bold);
@media #{$breakpoint-dimension-sm} {
display: unset;
}
}
.cta__description {
display: flex;
align-items: center;
gap: 0.125rem;
color: var(--color_fg_bold);
&:focus-visible {
outline: solid 1px var(--color_border_focus);
outline-offset: 0.125rem;
border-radius: 0.125rem;
}
@media #{$breakpoint-dimension-sm} {
text-decoration: underline;
}
}
.cta__arrow {
display: flex;
align-items: center;
height: 0.625rem;
width: 0.625rem;
svg {
height: 100%;
width: 100%;
path {
stroke: var(--color_fg_bold);
}
}
@media #{$breakpoint-dimension-md} {
height: 0.75rem;
width: 0.75rem;
}
}