Mirror of https://github.com/roostorg/osprey
github.com/roostorg/osprey
1@import './styles/Colors.module.css';
2
3.spinner {
4 height: 100%;
5 display: flex;
6 align-items: center;
7 justify-content: center;
8}
9
10:global(body) {
11 font-weight: 500;
12 font-size: 14px;
13 color: var(--text-light-primary);
14 line-height: 20px;
15}
16
17/* Global Ant Style Overrides, Use Sparingly! */
18
19:global(:last-child.ant-collapse-item) {
20 border-bottom: none;
21}
22
23:global(.ant-drawer-body) {
24 padding: 0;
25}
26
27:global(textarea) {
28 resize: none;
29}
30
31:global(.ant-modal-content) {
32 border-radius: 8px;
33}
34
35:global(.ant-modal-header) {
36 border-radius: 8px 8px 0 0;
37}
38
39:global(.ant-modal-footer) {
40 border-radius: 0 0 8px 8px;
41}
42
43:global(.ant-btn) > span {
44 display: flex;
45 align-items: center;
46}
47
48:global(.ant-btn.ant-btn-link) {
49 user-select: text !important;
50}
51
52:global(.ant-row.ant-form-item) {
53 margin-bottom: 4px !important;
54}
55
56:global(.ant-col.ant-form-item-label) {
57 padding-bottom: 4px;
58}
59
60:global(.ant-form-item-label) > label {
61 text-transform: uppercase;
62 font-weight: 600;
63 font-size: 12px !important;
64 color: var(--text-light-headings-primary);
65}
66
67:global(.ant-btn-link) {
68 color: var(--link-primary);
69}
70
71:global(.ant-btn) > span {
72 max-width: 100%;
73 overflow: hidden;
74 white-space: nowrap;
75 text-overflow: ellipsis;
76 display: block;
77}