Fix layout of the "Create shortcut" button

This commit is contained in:
redphx
2024-07-20 06:30:26 +07:00
parent 130a7ffbd7
commit bf7d6453ea
2 changed files with 12 additions and 6 deletions

View File

@@ -67,10 +67,6 @@
display: inline-block;
width: 16px;
height: var(--bx-button-height);
&:not(:only-child) {
margin-right: 10px;
}
}
span {
@@ -82,6 +78,10 @@
color: #fff;
overflow: hidden;
white-space: nowrap;
&:not(:only-child) {
margin-left: 10px;
}
}
}
@@ -119,5 +119,12 @@ button.bx-inactive {
}
.bx-button-shortcut {
margin-top: 10px;
max-width: max-content;
margin: 10px 0 0 0;
}
@media (min-width: 568px) and (max-height: 480px) {
.bx-button-shortcut {
margin: 8px 0 0 10px;
}
}