refactor(css): add new global classes & card border hover styling (#1156)

This commit is contained in:
TheCatLady
2021-03-11 21:25:46 -05:00
committed by GitHub
parent 71773c91c6
commit 1be97fe7fb
31 changed files with 165 additions and 152 deletions

View File

@@ -29,6 +29,18 @@ ul.cardList > li {
padding-bottom: 150%;
}
.slider-header {
@apply flex mt-6 mb-4;
}
.slider-title {
@apply inline-flex items-center text-xl leading-7 text-gray-300 sm:text-2xl sm:leading-9 sm:truncate;
}
a.slider-title {
@apply hover:text-white;
}
.hide-scrollbar {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
@@ -78,6 +90,10 @@ img.avatar-sm {
@apply text-white sm:col-span-2;
}
.form-input-field {
@apply flex max-w-lg rounded-md shadow-sm;
}
.label-required {
@apply text-red-500;
}