Skip to content

Commit e20f547

Browse files
authored
refactor: remove unused variables (#273)
1 parent e5b398a commit e20f547

File tree

8 files changed

+9
-17
lines changed

8 files changed

+9
-17
lines changed

projects/ngverse/src/lib/alert/alert.component.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
:host {
22
padding: 16px;
33
display: block;
4-
border-radius: var(--border-radius);
4+
border-radius: 6px;
55
&.fill {
66
&.success {
77
background: var(--color-success);

projects/ngverse/src/lib/autocomplete/autocomplete.component.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
gap: 10px;
1010
background: transparent;
1111
border: var(--border);
12-
border-radius: var(--border-radius);
12+
border-radius: 6px;
1313
padding: 4px 10px;
1414
width: 200px;
1515

projects/ngverse/src/lib/button/button.component.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
--button-color: var(--color-background);
1212
--button-on-color: var(--color-foreground);
13-
border-radius: var(--border-radius);
13+
border-radius: 6px;
1414
border: var(--border);
1515
position: relative;
1616
cursor: pointer;

projects/ngverse/src/lib/dialog/alert-dialog/alert-dialog.component.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.alert {
22
background: var(--color-background);
3-
border-radius: var(--border-radius);
3+
border-radius: 6px;
44
border: var(--border);
55
box-shadow: var(--color-shadow);
66
min-width: 300px;

projects/ngverse/src/lib/dialog/confirm-dialog/confirm-dialog.component.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.confirm {
22
background: var(--color-background);
3-
border-radius: var(--border-radius);
3+
border-radius: 6px;
44
border: var(--border);
55
box-shadow: var(--color-shadow);
66
min-width: 300px;

projects/ngverse/src/lib/ngverse.css

+2-10
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
@custom-variant dark (&:where(.dark, .dark *));
22

3-
:root {
4-
--field-height: 36px;
5-
--field-padding: 6px 10px;
6-
--border-radius: 6px;
7-
}
8-
9-
@theme static {
10-
--radius-default: 6px;
11-
}
12-
133
@theme static {
144
--color-background: white;
155
--color-foreground: #030712;
@@ -101,6 +91,8 @@
10191

10292
html,
10393
body {
94+
@apply bg-background text-foreground;
95+
10496
background-color: var(--color-background);
10597
color: var(--color-foreground);
10698
}

projects/ngverse/src/lib/pagination/pagination.component.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
display: flex;
1616
align-items: center;
1717
justify-content: center;
18-
border-radius: var(--border-radius);
18+
border-radius: 6px;
1919
padding: 4px 8px;
2020
cursor: pointer;
2121
background: transparent;

projects/ngverse/src/lib/progress-bar/progress-bar.component.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.progress-bar-container {
2-
border-radius: var(--border-radius);
2+
border-radius: 6px;
33
position: relative;
44
overflow-x: hidden;
55
height: 12px;

0 commit comments

Comments
 (0)