## Description Updates styling on modals and auth forms for more consistent spacing and alignment. - [x] I have read and understand the [CONTRIBUTING.md](https://github.com/payloadcms/payload/blob/main/CONTRIBUTING.md) document in this repository. ## Type of change - [x] Bug fix (non-breaking change which fixes an issue) ## Checklist: - [ ] I have added tests that prove my fix is effective or that my feature works - [x] Existing test suite passes locally with my changes - [ ] I have made corresponding changes to the documentation
41 lines
570 B
SCSS
41 lines
570 B
SCSS
@import '../../scss/styles.scss';
|
|
|
|
.duplicate {
|
|
&__modal {
|
|
@include blur-bg;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
}
|
|
|
|
&__wrapper {
|
|
z-index: 1;
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: base(0.8);
|
|
padding: base(2);
|
|
max-width: base(36);
|
|
}
|
|
|
|
&__content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: base(0.4);
|
|
|
|
> * {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
&__controls {
|
|
display: flex;
|
|
gap: base(0.4);
|
|
|
|
.btn {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|