doom-design-system 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -30,7 +30,6 @@
|
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
.modalCard {
|
|
33
|
-
/* Prevent sub-pixel slivers by matching the card background to the header color */
|
|
34
33
|
background-color: var(--primary);
|
|
35
34
|
}
|
|
36
35
|
|
|
@@ -59,7 +58,6 @@
|
|
|
59
58
|
align-items: center;
|
|
60
59
|
justify-content: center;
|
|
61
60
|
padding: 0 !important;
|
|
62
|
-
/* Use a semi-transparent black shadow instead of a theme variable to guarantee visibility on dark primary headers */
|
|
63
61
|
box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.4) !important;
|
|
64
62
|
transition: all 0.2s ease;
|
|
65
63
|
cursor: pointer;
|
|
@@ -76,7 +74,6 @@
|
|
|
76
74
|
|
|
77
75
|
.modalContent {
|
|
78
76
|
background-color: var(--card-bg);
|
|
79
|
-
/* Slight bleed to bridge any sub-pixel gaps at the header junction */
|
|
80
77
|
padding-top: 1px;
|
|
81
78
|
margin-top: -1px;
|
|
82
79
|
}
|
|
@@ -84,9 +81,18 @@
|
|
|
84
81
|
.body {
|
|
85
82
|
padding: var(--spacing-lg);
|
|
86
83
|
color: var(--foreground);
|
|
84
|
+
background-color: var(--card-bg);
|
|
85
|
+
width: 100%;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.header + .body {
|
|
89
|
+
margin-top: -1px;
|
|
90
|
+
padding-top: calc(var(--spacing-lg) + 1px);
|
|
87
91
|
}
|
|
88
92
|
|
|
89
93
|
.footer {
|
|
90
94
|
padding: var(--spacing-lg);
|
|
91
95
|
padding-top: 0;
|
|
96
|
+
background-color: var(--card-bg);
|
|
97
|
+
width: 100%;
|
|
92
98
|
}
|