-
Notifications
You must be signed in to change notification settings - Fork 690
Expand file tree
/
Copy pathcp.css
More file actions
42 lines (37 loc) · 817 Bytes
/
cp.css
File metadata and controls
42 lines (37 loc) · 817 Bytes
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
@layer preflight, theme, base, components, utilities;
@import './shared/preflight.css' layer(preflight);
@import './shared/variables.css' layer(theme);
@import './shared/tokens.css' layer(theme);
@import './shared/base.css' layer(base);
.resizable-container {
border: 2px solid;
padding: 20px;
width: 300px;
resize: both;
overflow: auto;
}
.skip-link {
/* Copied from tailwind's sr-only class */
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
&:focus {
width: auto;
height: auto;
overflow: visible;
clip: auto;
white-space: normal;
inset-inline-start: 0;
}
}
.error-list {
color: var(--c-color-danger-on-normal);
list-style: none;
padding: 0;
margin: 0;
}