aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/buttons/main-nav-button.module.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/molecules/buttons/main-nav-button.module.scss')
-rw-r--r--src/components/molecules/buttons/main-nav-button.module.scss37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/components/molecules/buttons/main-nav-button.module.scss b/src/components/molecules/buttons/main-nav-button.module.scss
deleted file mode 100644
index bc1ed19..0000000
--- a/src/components/molecules/buttons/main-nav-button.module.scss
+++ /dev/null
@@ -1,37 +0,0 @@
-@use "@styles/abstracts/functions" as fun;
-
-.checkbox {
- position: absolute;
- top: calc(#{fun.convert-px(50)} / 2);
- left: calc(#{fun.convert-px(50)} / 2);
- opacity: 0;
- cursor: pointer;
-}
-
-.label {
- display: block;
- cursor: pointer;
-
- .icon {
- &__wrapper {
- --icon-size: #{fun.convert-px(50)};
- }
-
- &--active {
- background: transparent;
- border: transparent;
-
- &::before {
- top: 0;
- transform-origin: 50% 50%;
- transform: rotate(-45deg);
- }
-
- &::after {
- bottom: 0;
- transform-origin: 50% 50%;
- transform: rotate(45deg);
- }
- }
- }
-}