Retry fixing buttons alignment of Space list header (#8080)
Closes https://github.com/vector-im/element-web/issues/21463 - Move min-height property Signed-off-by: Suguru Hirahara <luixxiul@users.noreply.github.com>pull/21833/head
parent
83f2bf4261
commit
cec6a76352
|
@ -35,11 +35,11 @@ limitations under the License.
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_SpaceHierarchy_listHeader {
|
.mx_SpaceHierarchy_listHeader {
|
||||||
display: grid;
|
display: flex;
|
||||||
|
flex-flow: wrap;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
column-gap: 10px;
|
gap: 12px;
|
||||||
min-height: 32px;
|
|
||||||
font-size: $font-15px;
|
font-size: $font-15px;
|
||||||
line-height: $font-24px;
|
line-height: $font-24px;
|
||||||
color: $primary-content;
|
color: $primary-content;
|
||||||
|
@ -55,9 +55,8 @@ limitations under the License.
|
||||||
grid-column-start: 2;
|
grid-column-start: 2;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: wrap;
|
flex-flow: wrap;
|
||||||
justify-content: flex-end;
|
gap: 12px;
|
||||||
row-gap: 12px;
|
min-height: 32px;
|
||||||
column-gap: 12px;
|
|
||||||
|
|
||||||
.mx_AccessibleButton {
|
.mx_AccessibleButton {
|
||||||
padding: 4px 12px;
|
padding: 4px 12px;
|
||||||
|
|
Loading…
Reference in New Issue