mirror of https://github.com/vector-im/riot-web
Fix missing padding on server picker (#7864)
* Fix missing padding on server picker Signed-off-by: Robin Townsend <robin@robin.town> * Use spacing variable Signed-off-by: Robin Townsend <robin@robin.town>pull/21833/head
parent
d8ac7cf202
commit
49bf0abeb5
|
@ -16,6 +16,7 @@ limitations under the License.
|
||||||
|
|
||||||
.mx_ServerPicker {
|
.mx_ServerPicker {
|
||||||
margin-bottom: 14px;
|
margin-bottom: 14px;
|
||||||
|
padding-bottom: $spacing-16;
|
||||||
border-bottom: 1px solid rgba(141, 151, 165, 0.2);
|
border-bottom: 1px solid rgba(141, 151, 165, 0.2);
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: auto min-content;
|
grid-template-columns: auto min-content;
|
||||||
|
@ -79,7 +80,6 @@ limitations under the License.
|
||||||
color: $tertiary-content;
|
color: $tertiary-content;
|
||||||
grid-column: 1 / 2;
|
grid-column: 1 / 2;
|
||||||
grid-row: 3;
|
grid-row: 3;
|
||||||
margin-bottom: 16px;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue