Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AnWhiteM committed Jun 20, 2024
1 parent 6df154c commit 1da9342
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
border-radius: 8px;
background: var(--add-card-btn);
color: var(--b-text);
width: 334px;
width: 320px;
height: 56px;
}

Expand All @@ -32,3 +32,9 @@
.icon{
stroke: var(--b-plus);
}
@media screen and (min-width: 768px) {
.btn {
width: 335px;
}
}

2 changes: 2 additions & 0 deletions src/components/CreateBoardModal/CreateBoardModal.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@
opacity: 0.6;
font-size: 14px;
letter-spacing: -0.02em;

transition: border var(--animation);
}

.input:hover,
Expand Down
2 changes: 2 additions & 0 deletions src/components/EditBoardModal/EditBoardModal.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@
opacity: 0.6;
font-size: 14px;
letter-spacing: -0.02em;

transition: border var(--animation);
}

.inputError {
Expand Down
8 changes: 5 additions & 3 deletions src/components/ModalHelp/ModalHelp.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
display: flex;
justify-content: center;
align-items: center;
z-index: 13;
z-index: 99;
}

.modal {
Expand All @@ -18,6 +18,7 @@
padding: 24px;
width: 335px;
border: 1px solid var(--modal-border);
z-index: 999;
}

.icon {
Expand Down Expand Up @@ -65,6 +66,8 @@
font-weight: 400;
box-shadow: none;
outline: none;

transition: border var(--animation);
}

.input {
Expand All @@ -82,7 +85,6 @@
.textArea:hover,
.textArea:focus {
opacity: 1;
border: 1px solid var(--white);
}

.input::placeholder,
Expand Down Expand Up @@ -126,7 +128,7 @@

.button:hover,
.button:focus {
background-color: #9dc888;
background-color: var(--btn-hover);
}

@media screen and (min-width: 768px) {
Expand Down
8 changes: 7 additions & 1 deletion src/components/TaskColumnName/TaskColumnName.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
border-radius: 8px;
padding: 20px 18px;
color: var(--modal-text);
max-width: 335px;
max-width: 320px;
margin-bottom: 14px;
}

Expand Down Expand Up @@ -41,3 +41,9 @@
filter: drop-shadow(0 0 5.5px var(--sb-shadows-hover));
stroke: var(--sb-shadows-hover);
}

@media screen and (min-width: 768px) {
.taskColumn {
max-width: 335px;
}
}

0 comments on commit 1da9342

Please sign in to comment.