From 14430e44075521709a425c1de60fc446102ceba7 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 1 Jan 2023 04:33:59 +0100 Subject: [PATCH] Created the DomainItem style --- .../components/DomainItem/styles.sass | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 admin/src/pages/Home/components/DomainDialog/components/DomainItem/styles.sass diff --git a/admin/src/pages/Home/components/DomainDialog/components/DomainItem/styles.sass b/admin/src/pages/Home/components/DomainDialog/components/DomainItem/styles.sass new file mode 100644 index 0000000..8f609c6 --- /dev/null +++ b/admin/src/pages/Home/components/DomainDialog/components/DomainItem/styles.sass @@ -0,0 +1,21 @@ +@import "@/common/styles/colors" + +.domain-item + display: flex + justify-content: space-between + align-items: center + padding: 0.7rem 1.2rem + border: 1px solid rgba(0, 0, 0, 0) + border-radius: 15px + cursor: pointer + gap: 2rem + font-size: 18pt + +.domain-current + border: 1px solid $gray + +.domain-item:hover + border: 1px solid $primary + +.delete-domain:hover + color: $red-hover \ No newline at end of file