mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
16 lines
289 B
SCSS
16 lines
289 B
SCSS
@mixin details-transition-open {
|
|
@include transition(max-height 0.2s cubic-bezier(0, 1, 0, 1) -0.1s);
|
|
}
|
|
|
|
@mixin details-transition-close {
|
|
@include transition(max-height 0.2s cubic-bezier(0.5, 0, 1, 0) 0s);
|
|
}
|
|
|
|
details {
|
|
&.center {
|
|
summary {
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|