better review design, caddy now listens on localhost too
This commit is contained in:
@@ -56,4 +56,34 @@ h4 {
|
||||
margin-top: 150px;
|
||||
width: 100%;
|
||||
height: fit-content;
|
||||
}
|
||||
|
||||
.custom-button {
|
||||
font-size: 1rem;
|
||||
font-weight: bold;
|
||||
height: 40px;
|
||||
padding: 10px 20px;
|
||||
background: var(--surface);
|
||||
color: rgb(0, 0, 0);
|
||||
cursor: pointer;
|
||||
border-radius: 20px;
|
||||
border: 2px solid var(--surface);
|
||||
user-select: none;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.custom-button:hover {
|
||||
border-color: white;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.custom-button.inactive {
|
||||
opacity: 0.3;
|
||||
cursor: default;
|
||||
color: black;
|
||||
}
|
||||
|
||||
.custom-button.inactive:hover {
|
||||
border-color: var(--surface);
|
||||
}
|
||||
Reference in New Issue
Block a user