about: wip popover
This commit is contained in:
parent
750a070a0e
commit
ad528e7c6c
1 changed files with 14 additions and 3 deletions
|
|
@ -727,11 +727,22 @@ about {
|
||||||
border: 2px solid var(--lavender);
|
border: 2px solid var(--lavender);
|
||||||
background-color: black;
|
background-color: black;
|
||||||
padding: 2rem;
|
padding: 2rem;
|
||||||
opacity: 1;
|
|
||||||
transition: all 0.5s;
|
|
||||||
|
|
||||||
@starting-style {
|
opacity: 0;
|
||||||
|
transform: scaleX(0);
|
||||||
|
|
||||||
|
transition: opacity 0.5s, transform 0.5s;
|
||||||
|
}
|
||||||
|
|
||||||
|
[popover]:popover-open {
|
||||||
|
opacity: 1;
|
||||||
|
transform: scaleX(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@starting-style {
|
||||||
|
[popover]:popover-open {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
|
transform: scaleX(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue