Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
AAloshine-scottlogic committed Feb 16, 2024
1 parent bdaa8be commit 3543dcb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/ChatBox/ChatBox.css
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
outline-offset: 0.1rem;
}

@media only screen and (min-width: 37.5rem) {
@media only screen and (width >= 37.5rem) {
.chat-box .footer {
gap: 0.5rem;
padding: 1rem;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/MainComponent/MainFooter.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
padding: 0 0.75rem;
}

@media only screen and (min-width: 37.5rem) {
@media only screen and (width >= 37.5rem) {
.main-footer {
height: 2rem;
}
Expand Down
6 changes: 4 additions & 2 deletions frontend/src/components/MainComponent/MainHeader.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@
gap: 1.5rem;
justify-content: flex-end;
align-items: center;
padding-left: 0.5rem;
width: 100%;
height: 100%;
padding-left: 0.5rem;
}

@media only screen and (min-width: 37.5rem) {
@media only screen and (width >= 37.5rem) {
.main-header-left > .title-logo {
height: 80%;
}
Expand Down Expand Up @@ -92,9 +92,11 @@
padding: 0.5rem;
white-space: normal;
}

.main-header .main-header-middle .header-button {
white-space: nowrap;
}

.themed-button > img {
display: none;
}
Expand Down

0 comments on commit 3543dcb

Please sign in to comment.