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;
|
-ms-grid-row: 3;
|
||||||
border-top: 1px solid $color-silver-light;
|
border-top: 1px solid $color-silver-light;
|
||||||
padding: 16px $modal-lateral-padding;
|
padding: 16px $modal-lateral-padding;
|
||||||
|
display: flex;
|
||||||
|
gap: $small-spacing;
|
||||||
}
|
}
|
||||||
|
|
||||||
$parent: &;
|
$parent: &;
|
||||||
|
|
|
||||||
|
|
@ -92,11 +92,12 @@ const licenseActivationLink = {
|
||||||
}
|
}
|
||||||
|
|
||||||
&__buttons {
|
&__buttons {
|
||||||
|
display: flex;
|
||||||
|
gap: $small-spacing;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__link {
|
&__link {
|
||||||
@include default-link;
|
@include default-link;
|
||||||
margin-right: $small-spacing;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -405,6 +405,8 @@ provide('features', props.features);
|
||||||
|
|
||||||
&__buttons {
|
&__buttons {
|
||||||
width: 800px;
|
width: 800px;
|
||||||
|
display: flex;
|
||||||
|
gap: $small-spacing;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -181,6 +181,8 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
&__buttons {
|
&__buttons {
|
||||||
|
display: flex;
|
||||||
|
gap: $small-spacing;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -124,6 +124,7 @@ export default {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr 1fr;
|
grid-template-columns: 1fr 1fr;
|
||||||
padding: $medium-spacing;
|
padding: $medium-spacing;
|
||||||
|
gap: $small-spacing;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__button {
|
&__button {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue