46 lines
723 B
CSS
46 lines
723 B
CSS
mat-toolbar {
|
|
height: 7vh;
|
|
background-color: #3f51b5;
|
|
color: white;
|
|
}
|
|
|
|
.trace-button .mat-icon {
|
|
color: #ffffff;
|
|
}
|
|
|
|
.navbar-actions-row {
|
|
display: flex;
|
|
justify-content: end;
|
|
align-items: center;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.navbar-buttons-row {
|
|
display: flex;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.navbar-title {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.logout-button {
|
|
background-color: #f00e0e;
|
|
color: white;
|
|
padding: 8px 18px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
transition: transform 0.3s ease;
|
|
font-family: Roboto, "Helvetica Neue", sans-serif;
|
|
}
|
|
|
|
.logout-button:hover:not(:disabled) {
|
|
background-color: #f00e0edc;
|
|
}
|
|
|
|
.logout-button:disabled {
|
|
background-color: #ced0df;
|
|
cursor: not-allowed;
|
|
} |