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

Compare commits

...

3 commits

Author SHA1 Message Date
5a5a1bc775
build: Bumped version to 5.0.7 2024-03-18 16:04:06 -05:00
b66086be38
fix: Centering on mobile UI 2024-03-18 16:02:45 -05:00
3be2862e9f
fix: Width issues on mobile 2024-03-18 15:23:12 -05:00
3 changed files with 21 additions and 3 deletions

2
actix/Cargo.lock generated
View file

@ -475,7 +475,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chhoto-url"
version = "5.0.6"
version = "5.0.7"
dependencies = [
"actix-files",
"actix-session",

View file

@ -1,6 +1,6 @@
[package]
name = "chhoto-url"
version = "5.0.6"
version = "5.0.7"
edition = "2021"
authors = ["Sayantan Santra <sayantan[dot]santra689[at]gmail[dot]com"]
license = "mit"

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;
}
@ -84,6 +91,10 @@ dialog form {
/* Settings for mobile devices */
@media (pointer:none),
(pointer:coarse) {
.container {
max-width: 100vw;
}
.pure-control-group input {
width: 98%;
}
@ -98,6 +109,7 @@ dialog form {
table td {
display: flex;
justify-content: left !important;
}
table td::before {
@ -108,7 +120,13 @@ dialog form {
text-align: left;
}
td[name="deleteBtn"] button {
border-radius: 50%;
aspect-ratio: 1;
}
.pure-table caption {
padding-top: 0px;
}
}