aboutsummaryrefslogtreecommitdiff
path: root/src/components/editors/scss/address-editor.scss
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-09-27 12:25:56 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-09-27 12:25:56 +0530
commitaf0ef4c190f3967d2def0c65cc3a1fce4511044e (patch)
treebba973c45ca5197ebf336d5e2f7f0f599b74bccd /src/components/editors/scss/address-editor.scss
parent708862c94bd119ca7e86540fbc68595a6256c9e3 (diff)
added shipping address functionality to /manage/clients page
Diffstat (limited to 'src/components/editors/scss/address-editor.scss')
-rw-r--r--src/components/editors/scss/address-editor.scss20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/components/editors/scss/address-editor.scss b/src/components/editors/scss/address-editor.scss
index 49b0a0a..50db4a9 100644
--- a/src/components/editors/scss/address-editor.scss
+++ b/src/components/editors/scss/address-editor.scss
@@ -20,6 +20,8 @@
.address-editor {
min-height: 18rem;
+ position: relative;
+
.heading {
font-size: 1.1rem;
color: $primaryAccentColor;
@@ -27,6 +29,20 @@
align: center;
}
+ .remove-button {
+ opacity: 0;
+ position: absolute;
+ font-size: 2rem;
+ top: 0.8rem;
+ right: 1rem;
+ color: $secondaryAccentColor;
+ transition: opacity 0.2s, color 0.3s;
+ }
+
+ .remove-button:hover {
+ color: $warningColor;
+ }
+
.checkbox-label {
border: none;
max-width: none;
@@ -63,3 +79,7 @@
}
}
}
+
+.address-editor:hover .remove-button {
+ opacity: 1;
+}