freetube/src/renderer/components/ft-toast/ft-toast.css

31 lines
504 B
CSS
Raw Normal View History

2020-06-14 21:13:35 +00:00
.toast {
display: flex;
2020-06-15 19:26:35 +00:00
padding: 10px;
2020-06-14 21:13:35 +00:00
overflow-y: auto;
position: fixed;
2020-06-15 19:26:35 +00:00
left: 50vw;
transform: translate(-50%, 0);
2020-06-14 21:13:35 +00:00
bottom: 100px;
2020-06-15 19:26:35 +00:00
z-index: 1;
background-color: var(--primary-input-color);
2020-06-14 21:13:35 +00:00
opacity: 0;
border-radius: 20px;
cursor: pointer;
}
.message {
margin: auto;
}
.open {
visibility: visible;
opacity: 1;
transition: visibility 0s linear 0s, opacity 300ms;
}
.closed {
visibility: hidden;
opacity: 0;
transition: visibility 0s linear 300ms, opacity 300ms;
}