5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-26 21:26:22 +00:00

feat: agregado clase details a application.scss #15000
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
jazzari 2024-01-17 16:39:20 -03:00
parent ed0c237d60
commit 4c902c8aaf

View file

@ -558,3 +558,31 @@ $bezier: cubic-bezier(0.75, 0, 0.25, 1);
} }
} }
} }
// details styles
.details summary {
list-style: none;
cursor: default;
position: relative;
&::after {
content: '';
font-size: 2rem;
position: absolute;
left: 97%;
bottom: 46%;
transform: rotate(55deg);
color: $magenta
}
&:focus {
background-color: #13FEFE;
color: black
}
}
.details[open] > summary::after {
transform: rotate(90deg) translatey(-0.1em);
color: $magenta
}