You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
774 B
36 lines
774 B
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer utilities {
|
|
.btn-dark {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background: var(--primaryColor);
|
|
border: solid 1px var(--primaryColor);
|
|
border-radius: 4px;
|
|
color: white;
|
|
}
|
|
.btn-light {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: transparent;
|
|
border-radius: 4px;
|
|
color: var(--primaryColor);
|
|
border: solid 1px var(--primaryColor);
|
|
}
|
|
.btn-light:active {
|
|
background-color: #e5e5e5;
|
|
}
|
|
.btn-light-disabled {
|
|
color: #d6d6d6;
|
|
border: solid 1px #d6d6d6;
|
|
}
|
|
.component-page {
|
|
height: calc(100vh - var(--headerHeight) - var(--footerHeight));
|
|
width: calc(100vw - var(--menuAreaWidth));
|
|
background-color: #fff;
|
|
}
|
|
}
|