Refactor modal styling for better readability

This commit refactors the modal styling in the app.postcss file to improve readability and maintainability. The changes involve removing unnecessary indentation in the modal CSS class, which enhances the overall quality of the code.

- Removed unnecessary indentation in the modal CSS class
- No functional changes were made
This commit is contained in:
idonahue 2023-05-08 16:28:36 +02:00
parent 9e84f02565
commit 350aed07d3
2 changed files with 5 additions and 8 deletions

View File

@ -109,11 +109,11 @@ input:focus {
/* MODAL */
.modal {
@apply rounded-lg border-[0.5px] border-modal-stroke;
backdrop-filter: blur(10px);
background-color: rgb(36 36 41 / 0.8 );
/* Note: backdrop-filter has minimal browser support */
}
@apply rounded-lg border-[0.5px] border-modal-stroke;
backdrop-filter: blur(10px);
background-color: rgb(36 36 41 / 0.8);
/* Note: backdrop-filter has minimal browser support */
}
/* TEXT EDITOR */
.token-attribute {

View File

@ -35,9 +35,6 @@
</Modal>
<style>
header {
box-shadow: inset 0px -1px 0px rgba(0, 0, 0, 0.1);
}