diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-10-01 19:48:06 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-10-01 19:48:06 +0530 |
commit | fd5ed8aa4f159c8e1c0476915432e0a97a239a91 (patch) | |
tree | 42d3563472d9032c27f4e3a87dff85ec19362a94 /src/components/editors/scss/client-editor.scss | |
parent | e4dbf70d561aa3ed79379ffdb98661cb3f215fe9 (diff) |
fixed warning 'component changing controlled input to uncontrolled' while editing shipping addresses
Diffstat (limited to 'src/components/editors/scss/client-editor.scss')
-rw-r--r-- | src/components/editors/scss/client-editor.scss | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/components/editors/scss/client-editor.scss b/src/components/editors/scss/client-editor.scss index 30919fd..2a2bfef 100644 --- a/src/components/editors/scss/client-editor.scss +++ b/src/components/editors/scss/client-editor.scss @@ -16,6 +16,7 @@ */ @import "editor"; +@import "../../../colors"; .client-editor { max-width: 90%; @@ -33,3 +34,14 @@ } } } + +.floating-window { + overflow: scroll; + max-height: 100%; + .buttons { + position: fixed; + bottom: 1rem; + background-color: $backgroundColor; + padding: 1rem auto; + } +} |