0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-14 19:22:52 +00:00

Vertically center button labels

Set labels as inline-flex containers and vertically align children to center.
This commit is contained in:
Gazook89
2021-07-29 12:28:02 -05:00
committed by GitHub
parent 0c0ba0b6ca
commit c4c5e21ce0

View File

@@ -40,11 +40,13 @@
font-weight : 800; font-weight : 800;
user-select : none; user-select : none;
white-space : nowrap; white-space : nowrap;
display : inline-block; display : inline-flex;
align-items : center;
} }
input{ input{
vertical-align : middle; vertical-align : middle;
cursor : pointer; cursor : pointer;
margin : 3px;
} }
} }
.publish.field .value{ .publish.field .value{