Skip to content

Commit

Permalink
did some css changes like fixing error messages, made by message and …
Browse files Browse the repository at this point in the history
…made it look MUCH better on mobile:)
  • Loading branch information
JustablockCode authored Oct 15, 2024
1 parent 899b523 commit 2b51a58
Showing 1 changed file with 31 additions and 12 deletions.
43 changes: 31 additions & 12 deletions css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ body {
color: white;
z-index: 0;
padding: 10px;
max-height: 80vh; /* Adjust this to ensure the chat doesn't overflow */
max-height: 80vh;
overflow-y: auto;
padding-bottom: 100px; /* Adds space for the footer */
padding-bottom: 100px;
margin: 20px;
width: 75%;
}
Expand Down Expand Up @@ -152,31 +152,50 @@ body {
padding: 10px;
border: 2px solid gray;
border-radius: 10px;
z-index: 10;
}

a {
color: #00ffea;
text-decoration: none;
transition: all 0.3s ease-in-out;
}
#footertop a {
color: #00ffea;
text-decoration: none;
transition: all 0.3s ease-in-out;
}

a:hover {
color: #00c0b0;
text-decoration: underline;
transition: all 0.3s ease-in-out;
}
#footertop a:hover {
color: #00c0b0;
text-decoration: underline;
transition: all 0.3s ease-in-out;
}

.notifications {
position: fixed;
right: 10px;
top: 10px;
z-index: 100;
/* border: 1px solid #d15f6b; */
border-radius: 5px;
}

.notification {
background-color: #3f3a39;
padding: 10px;
border-radius: 5px;
margin-bottom: 10px;
border: 5px solid #d15f6b;
}
/* Media query for mobile devices */
@media (max-width: 600px) {
#footertop {
position: static;
text-align: center;
width: 100%;
box-sizing: border-box;
}

.notifications {
top: 10px;
width: 90%;
}
}

.copy-button {
Expand Down

0 comments on commit 2b51a58

Please sign in to comment.