add: error history modal for easier to view log and copy

This commit is contained in:
RainyXeon
2024-07-07 17:03:20 +07:00
committed by ThePedroo
parent e059917f73
commit 7ef7cf24e9
17 changed files with 199 additions and 34 deletions
+21 -2
View File
@@ -137,7 +137,7 @@ a {
padding-top: 1em;
padding-bottom: 1em;
border-radius: 30px;
transition: transform 0.07s ease-in-out;
transition: transform 0.05s ease-in-out;
background-color: var(--button);
}
@@ -172,13 +172,32 @@ a {
}
.element_animation {
transition: transform 0.15 ease-in-out;
transition: transform 0.15s ease-in-out;
}
.element_animation:active {
transform: scale(95%)
}
.card_animation {
transition: transform 0.05s ease-in-out;
}
.card_animation:active {
transform: scale(95%)
}
.errorh_textarea {
resize: none;
height: 100%;
width: 100%;
border: none;
outline: none;
font-size: 16px;
padding-bottom: 25px;
font-family: monospace, monospace;
}
/* Card type */
.bright {
border: 5px solid var(--bright);