Production #13

Merged
ksenia_mikhailova merged 22 commits from dev into main 2024-07-08 09:23:32 +03:00
1 changed files with 16 additions and 1 deletions
Showing only changes of commit c53c7caf4b - Show all commits

View File

@ -36,6 +36,18 @@ body {
.menu { .menu {
@apply col-span-8 flex justify-between; @apply col-span-8 flex justify-between;
a {
@apply underline decoration-0 underline-offset-4 decoration-dotted hover:decoration-transparent transition-all;
}
a[href^=http] {
@apply relative no-underline;
&:after {
content: '';
@apply ml-2;
}
}
} }
a[href^="#"] { a[href^="#"] {
@ -128,6 +140,7 @@ a[href^="#"] {
&-close { &-close {
@apply absolute right-4 top-4 text-4xl opacity-50; @apply absolute right-4 top-4 text-4xl opacity-50;
} }
h2 { h2 {
@apply px-4; @apply px-4;
} }
@ -220,8 +233,10 @@ button {
.canvas-icons { .canvas-icons {
@apply absolute text-3xl top-0 left-0 flex flex-col; @apply absolute text-3xl top-0 left-0 flex flex-col;
a { a {
@apply cursor-pointer; @apply cursor-pointer;
&.disabled { &.disabled {
@apply cursor-not-allowed opacity-50 pointer-events-none; @apply cursor-not-allowed opacity-50 pointer-events-none;
} }