### What? - Removes the tenant cookie when the user logs out - Prevents double redirect to globals when no tenant is selected ### Why? There were a couple scenarios where the cookie and the tenant did not match, ie if you logged into 1 tenant, and then out and then into another tenant.
15 lines
324 B
CSS
15 lines
324 B
CSS
#tenant-logo {
|
|
border-radius: 100%;
|
|
height: 18px;
|
|
width: 18px;
|
|
background-color: var(--theme-error-400);
|
|
}
|
|
|
|
[data-selected-tenant-title="Blue Dog"] #tenant-logo {
|
|
background-color: var(--theme-success-300);
|
|
}
|
|
|
|
[data-selected-tenant-title="Steel Cat"] #tenant-logo {
|
|
background-color: var(--theme-warning-300);
|
|
}
|