5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-23 05:36:22 +00:00

fix: corregido codigo de details en application.scss
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
jazzari 2024-02-12 11:27:24 -03:00
parent 529711c47d
commit faf3bf3fcf

View file

@ -559,7 +559,7 @@ $bezier: cubic-bezier(0.75, 0, 0.25, 1);
}
}
// details styles
/*
.details summary {
list-style: none;
cursor: default;
@ -578,4 +578,29 @@ $bezier: cubic-bezier(0.75, 0, 0.25, 1);
.details[open] > summary::after {
transform: rotate(90deg) translatey(-0.1em);
}
*/
.details {
summary {
list-style: none;
cursor: default;
position: relative;
}
summary::after {
content: '';
font-size: 1.8rem;
position: absolute;
left: 97%;
bottom: 3%;
transform: rotate(64deg);
}
}
.details[open] {
& > summary {
&::after {
transform: rotate(90deg) translatey(-0.1em);
}
}
}