Fix gap between buttons in forms and modals
Resolves MS-886 #complete
This commit is contained in:
parent
54f3aa40dc
commit
51ea997259
|
|
@ -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: &;
|
||||
|
|
|
|||
|
|
@ -92,11 +92,12 @@ const licenseActivationLink = {
|
|||
}
|
||||
|
||||
&__buttons {
|
||||
display: flex;
|
||||
gap: $small-spacing;
|
||||
}
|
||||
|
||||
&__link {
|
||||
@include default-link;
|
||||
margin-right: $small-spacing;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -405,6 +405,8 @@ provide('features', props.features);
|
|||
|
||||
&__buttons {
|
||||
width: 800px;
|
||||
display: flex;
|
||||
gap: $small-spacing;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -181,6 +181,8 @@ export default {
|
|||
}
|
||||
|
||||
&__buttons {
|
||||
display: flex;
|
||||
gap: $small-spacing;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -124,6 +124,7 @@ export default {
|
|||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
padding: $medium-spacing;
|
||||
gap: $small-spacing;
|
||||
}
|
||||
|
||||
&__button {
|
||||
|
|
|
|||
Loading…
Reference in New Issue