it's working!!!
This commit is contained in:
@ -80,6 +80,13 @@ body {
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
|
||||
/* Container for the auth button */
|
||||
#auth-button-container {
|
||||
min-width: 100px; /* Ensure space for the button */
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
|
||||
.todo-container h1 {
|
||||
margin: 0;
|
||||
color: #2c3e50;
|
||||
@ -151,6 +158,8 @@ body {
|
||||
transition: background-color 0.2s ease, box-shadow 0.2s ease;
|
||||
background-color: #3498db; /* Primary button color */
|
||||
color: white;
|
||||
text-decoration: none; /* For anchor tags styled as buttons */
|
||||
display: inline-block; /* For anchor tags */
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
@ -211,3 +220,19 @@ body {
|
||||
min-height: 1.2em; /* Prevent layout shift */
|
||||
}
|
||||
|
||||
/* Styling for the login prompt */
|
||||
.login-prompt-container {
|
||||
text-align: center;
|
||||
padding: 40px 20px;
|
||||
background-color: #f8f9fa;
|
||||
border: 1px solid #e9ecef;
|
||||
border-radius: 5px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.login-prompt-container p {
|
||||
margin-bottom: 15px;
|
||||
font-size: 1.1em;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user