-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmanchette.css
48 lines (42 loc) · 953 Bytes
/
manchette.css
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
.manchette-container {
.manchette-actions {
align-items: center;
background-color: rgba(250, 249, 245, 0.6);
border-top: solid 1px;
border-right: solid 1px;
border-radius: 0 0 0 10px;
@apply border-black-25;
display: flex;
height: 2.5rem;
width: inherit;
position: sticky;
bottom: 0;
left: 0;
width: 100%;
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
.zoom-buttons {
display: flex;
align-items: center;
height: 100%;
button {
border-right: solid 1px theme('colors.grey.20');
border-top: solid 1px white;
height: 100%;
padding-inline: 12px;
}
button:disabled {
@apply text-grey-30;
}
.zoom-reset {
@apply text-grey-50;
font-weight: 600;
font-size: 14px;
}
}
.toggle-mode {
font-size: 0.875rem;
line-height: 14px;
}
}
}