mirror of
https://github.com/kieraneglin/pinchflat.git
synced 2026-01-23 10:26:07 +00:00
* Added scratchpad dir * Installed Alpine * [WIP] began integrating Tailwind and accompanying theme * [WIP] Set up basic views for sources * Adds new UI to media profiles page * Removes unneeded view
31 lines
569 B
CSS
31 lines
569 B
CSS
@import 'tailwindcss/base';
|
|
@import 'tailwindcss/components';
|
|
@import 'tailwindcss/utilities';
|
|
|
|
@import './satoshi';
|
|
|
|
/* This file is for your main application CSS */
|
|
[x-cloak] {
|
|
display: none !important;
|
|
}
|
|
|
|
@layer base {
|
|
body {
|
|
@apply relative z-1 bg-whiten font-satoshi text-base font-normal text-body;
|
|
}
|
|
}
|
|
|
|
@layer components {
|
|
}
|
|
|
|
@layer utilities {
|
|
/* Chrome, Safari and Opera */
|
|
.no-scrollbar::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.no-scrollbar {
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
scrollbar-width: none; /* Firefox */
|
|
}
|
|
}
|