mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-11 04:55:07 +00:00
22 lines
254 B
CSS
22 lines
254 B
CSS
|
div {
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
input {
|
||
|
border: none;
|
||
|
background: none;
|
||
|
padding: 0;
|
||
|
outline: none;
|
||
|
font: inherit;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
span {
|
||
|
opacity: 0;
|
||
|
transition: opacity 200ms;
|
||
|
}
|
||
|
|
||
|
:host.floating span {
|
||
|
opacity: 1;
|
||
|
}
|