Modal ze zmianami

This commit is contained in:
2022-08-18 23:50:09 +02:00
parent 64eca66fd8
commit 732461794f
6 changed files with 100 additions and 21 deletions
+40
View File
@@ -84,5 +84,45 @@ button:hover {
button:focus-within {
border: 1px solid gold;
}
// Card modal
.g-card {
position: fixed;
z-index: 999;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 90vw;
max-width: 350px;
padding: 0.5em 1em;
margin-top: 1em;
background-color: #2e2e2e;
box-shadow: 0 0 6px 1px #131313;
}
// Scrollbar
/* width */
::-webkit-scrollbar {
width: 7px;
}
/* Track */
::-webkit-scrollbar-track {
background: #333;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 1rem;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #aaa;
}
</style>