Distributed cache * cache deleteKey now uses an options object instead of a lonely argument variable fuzzy * merge * remove debug logs and cleanup * cleanup * add fault handling * add fault handling * add pid when logging redis client creation * add identifier when logging redis client creation * cleanup * feat: add redis-api as it's own app * feature: use http wrapper for redis * feat: add the possibility to fallback to unstable_cache * Add error handling if redis cache is unresponsive * add logging for unstable_cache * merge * don't cache errors * fix: metadatabase on branchdeploys * Handle when /en/destinations throws add ErrorBoundary * Add sentry-logging when ErrorBoundary catches exception * Fix error handling for distributed cache * cleanup code * Added Application Insights back * Update generateApiKeys script and remove duplicate * Merge branch 'feature/redis' of bitbucket.org:scandic-swap/web into feature/redis * merge Approved-by: Linus Flood
45 lines
648 B
CSS
45 lines
648 B
CSS
.container {
|
|
display: grid;
|
|
gap: var(--Spacing-x3);
|
|
grid-template-areas:
|
|
"title"
|
|
"form"
|
|
"buttons";
|
|
}
|
|
|
|
.title {
|
|
grid-area: title;
|
|
}
|
|
|
|
.form {
|
|
display: grid;
|
|
gap: var(--Spacing-x5);
|
|
grid-area: form;
|
|
}
|
|
|
|
.btnContainer {
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
gap: var(--Spacing-x1);
|
|
grid-area: buttons;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.container {
|
|
grid-template-areas:
|
|
"title buttons"
|
|
"form form";
|
|
}
|
|
|
|
.form {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
|
|
.btnContainer {
|
|
align-self: center;
|
|
flex-direction: row;
|
|
gap: var(--Spacing-x2);
|
|
justify-self: flex-end;
|
|
}
|
|
}
|