Skip to content

Commit 8b7629e

Browse files
committed
Fix textinput, validate button, dateinput
1 parent 1bb82e5 commit 8b7629e

File tree

6 files changed

+4
-6
lines changed

6 files changed

+4
-6
lines changed

app/src/components/Navbar/CountryDropdown/styles.module.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
padding: var(--go-ui-spacing-md);
55
max-width: 64rem;
66
min-height: 16rem;
7-
gap: var(--go-ui-spacing-md);
7+
gap: var(--go-ui-spacing-sm);
88
overflow: auto;
99

1010
.region-list {

app/src/views/CountryNsOverviewContextAndStructure/NationalSocietyLocalUnits/LocalUnitValidateButton/styles.module.css

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
}
66

77
.local-unit-validated-button {
8+
align-items: center;
89
border: none;
910
background-color: var(--go-ui-color-gray-40);
1011

packages/ui/src/components/Button/styles.module.css

-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
width: fit-content;
2020
max-width: 100%;
2121
overflow: hidden;
22-
text-align: center;
2322
text-transform: var(--text-transform);
2423
line-height: var(--go-ui-line-height-md);
2524
color: var(--color-text);
@@ -44,8 +43,6 @@
4443

4544
&.primary,
4645
&.secondary {
47-
min-width: calc(var(--base-spacing) * 6.5);
48-
4946
.children {
5047
text-align: center;
5148
}

packages/ui/src/components/DropdownMenu/styles.module.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
.dropdown-content {
1818
display: flex;
1919
flex-direction: column;
20-
padding-left: var(--go-ui-spacing-lg);
20+
padding: var(--go-ui-spacing-sm) 0;
2121
}

packages/ui/src/components/InputContainer/styles.module.css

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
padding: 0 var(--go-ui-spacing-sm);
1111

1212
.input {
13-
padding-left:12px;
1413
height: var(--go-ui-height-compact-status-icon);
1514
}
1615
}

packages/ui/src/components/InputLabel/styles.module.css

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
display: flex;
33
color: var(--go-ui-color-gray-70);
44
gap: var(--go-ui-spacing-xs);
5+
padding-left: 12px;
56

67
&.disabled {
78
color: var(--go-ui-color-gray-40);

0 commit comments

Comments
 (0)