refactor (URLsmanager): styles

This commit is contained in:
Timothy Z. 2024-12-12 15:26:50 +02:00
parent cbfd920caa
commit e92d9ca0d9
2 changed files with 12 additions and 9 deletions

View file

@ -4,10 +4,10 @@
.item {
display: flex;
padding: 1rem 1.5rem;
border-radius: var(--border-radius);
padding: 0.7rem 1.5rem;
border-radius: 2.5rem;
transition: 0.3s all ease-in-out;
background-color: transparent;
background-color: var(--overlay-color);
border: 2px solid transparent;
justify-content: space-between;
position: relative;
@ -100,7 +100,7 @@
}
&:hover {
background-color: var(--overlay-color);
border: 2px solid var(--overlay-color);
.actions {
.delete {
@ -114,13 +114,11 @@
@media only screen and (max-width: @minimum) {
.item {
padding: 1rem 0.5rem;
padding: 0.7rem 1rem;
.actions {
margin-right: 4rem;
.delete {
right: 0.5rem;
right: 1rem;
.icon {
opacity: 0.6;

View file

@ -8,7 +8,8 @@
.header {
display: flex;
justify-content: space-around;
justify-content: space-between;
margin: 0 3rem;
align-items: center;
.label {
@ -16,6 +17,10 @@
color: var(--primary-foreground-color);
font-weight: 400;
opacity: 0.6;
&:last-of-type {
margin-right: 4rem;
}
}
}