Fix gap between buttons in forms and modals

Resolves MS-886 #complete
This commit is contained in:
Ramon Wenger 2024-04-03 16:14:15 +02:00
parent 54f3aa40dc
commit 51ea997259
5 changed files with 9 additions and 1 deletions

View File

@ -135,6 +135,8 @@ export default {
-ms-grid-row: 3;
border-top: 1px solid $color-silver-light;
padding: 16px $modal-lateral-padding;
display: flex;
gap: $small-spacing;
}
$parent: &;

View File

@ -92,11 +92,12 @@ const licenseActivationLink = {
}
&__buttons {
display: flex;
gap: $small-spacing;
}
&__link {
@include default-link;
margin-right: $small-spacing;
}
}
</style>

View File

@ -405,6 +405,8 @@ provide('features', props.features);
&__buttons {
width: 800px;
display: flex;
gap: $small-spacing;
}
}
</style>

View File

@ -181,6 +181,8 @@ export default {
}
&__buttons {
display: flex;
gap: $small-spacing;
}
}
</style>

View File

@ -124,6 +124,7 @@ export default {
display: grid;
grid-template-columns: 1fr 1fr;
padding: $medium-spacing;
gap: $small-spacing;
}
&__button {