mirror of
https://github.com/SinTan1729/chhoto-url
synced 2024-12-26 07:38:36 -06:00
Compare commits
3 commits
b0603f62b4
...
5a5a1bc775
Author | SHA1 | Date | |
---|---|---|---|
5a5a1bc775 | |||
b66086be38 | |||
3be2862e9f |
3 changed files with 21 additions and 3 deletions
2
actix/Cargo.lock
generated
2
actix/Cargo.lock
generated
|
@ -475,7 +475,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|||
|
||||
[[package]]
|
||||
name = "chhoto-url"
|
||||
version = "5.0.6"
|
||||
version = "5.0.7"
|
||||
dependencies = [
|
||||
"actix-files",
|
||||
"actix-session",
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue