mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-23 02:06:22 +00:00
fix: corregido codigo de details en application.scss
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
529711c47d
commit
faf3bf3fcf
1 changed files with 26 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue