1
0
Fork 0
mirror of https://github.com/SinTan1729/chhoto-url synced 2024-12-26 07:38:36 -06:00

fix: Centering on mobile UI

This commit is contained in:
Sayantan Santra 2024-03-18 16:02:45 -05:00
parent 3be2862e9f
commit b66086be38
Signed by: SinTan1729
GPG key ID: EB3E68BFBA25C85F

View file

@ -29,13 +29,20 @@ table tr td div {
}
td[name="deleteBtn"] {
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
td[name="deleteBtn"] button {
border-radius: 50%;
aspect-ratio: 1;
border-style: solid;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
background-color: transparent;
}
@ -102,6 +109,7 @@ dialog form {
table td {
display: flex;
justify-content: left !important;
}
table td::before {
@ -112,7 +120,13 @@ dialog form {
text-align: left;
}
td[name="deleteBtn"] button {
border-radius: 50%;
aspect-ratio: 1;
}
.pure-table caption {
padding-top: 0px;
}
}