UI bug fixes

This commit is contained in:
sairaj mote 2023-02-19 00:23:44 +05:30
parent 47f20ab77c
commit 94e48dcd6b
3 changed files with 12 additions and 1 deletions

View File

@ -751,12 +751,14 @@ ol li::before {
display: grid; display: grid;
text-align: center; text-align: center;
align-items: center; align-items: center;
justify-items: center;
} }
.multi-state-button > * { .multi-state-button > * {
grid-area: 1/1/2/2; grid-area: 1/1/2/2;
} }
.multi-state-button button { .multi-state-button button {
z-index: 1; z-index: 1;
width: 100%;
} }
.scrolling-wrapper { .scrolling-wrapper {
@ -1006,6 +1008,10 @@ table tr:nth-child(even) {
background-color: rgba(var(--foreground-color), 1); background-color: rgba(var(--foreground-color), 1);
} }
#txid {
font-size: 0.9rem;
}
.user-action-result__icon { .user-action-result__icon {
justify-self: center; justify-self: center;
height: 4rem; height: 4rem;

2
css/main.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -701,11 +701,13 @@ ol {
display: grid; display: grid;
text-align: center; text-align: center;
align-items: center; align-items: center;
justify-items: center;
& > * { & > * {
grid-area: 1/1/2/2; grid-area: 1/1/2/2;
} }
button { button {
z-index: 1; z-index: 1;
width: 100%;
} }
} }
.scrolling-wrapper { .scrolling-wrapper {
@ -943,6 +945,9 @@ table {
border-radius: 3rem; border-radius: 3rem;
background-color: rgba(var(--foreground-color), 1); background-color: rgba(var(--foreground-color), 1);
} }
#txid {
font-size: 0.9rem;
}
.user-action-result__icon { .user-action-result__icon {
justify-self: center; justify-self: center;
height: 4rem; height: 4rem;