responsive

This commit is contained in:
Chneemann 2024-04-24 09:55:29 +02:00
parent 1ff279d153
commit 94ac068855
3 changed files with 17 additions and 4 deletions

View file

@ -44,6 +44,8 @@ span {
align-items: center;
}
/*------------- RESPONSIVE -------------*/
@media screen and (max-width: 800px) {
.name {
flex-direction: column;

View file

@ -143,6 +143,7 @@
text-overflow: ellipsis;
white-space: nowrap;
}
/*------------- RESPONSIVE -------------*/
@media screen and (max-width: 1150px) {

View file

@ -1,8 +1,7 @@
.btn-submit {
width: fit-content;
height: 56px;
padding: 12px;
margin: 12px 12px;
margin: 12px;
border-radius: 10px;
border: 1px solid var(--black) !important;
background-color: var(--light-gray);
@ -27,7 +26,6 @@
.btn-clear {
width: fit-content;
height: 56px;
padding: 12px;
margin: 12px;
border-radius: 10px;
@ -47,7 +45,6 @@
.btn-delete {
width: fit-content;
height: 56px;
padding: 12px;
margin: 12px;
border-radius: 10px;
@ -87,3 +84,16 @@
.input-container:hover .background-image {
filter: var(--filter);
}
/*------------- RESPONSIVE -------------*/
@media screen and (max-width: 400px) {
.btn-submit,
.btn-clear,
.btn-delete {
padding: 8px;
margin: 6px;
font-size: 18px;
font-weight: 400;
}
}