mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2026-09-03 05:10:16 +03:00
# Description of Changes Adds the code for the SaaS frontend as proprietary code to the OSS repo. This version of the code is adapted from 22/1/2026, which was the last SaaS version based on the 'V2' design. This will move us closer to being able to have the OSS products understand whether the user has a SaaS account, and provide the correct UI in those cases.
26 lines
381 B
CSS
26 lines
381 B
CSS
|
|
/* Import minimal theme variables */
|
|
@import './theme.css';
|
|
|
|
@layer base {
|
|
@tailwind base;
|
|
}
|
|
|
|
@layer components {
|
|
@tailwind components;
|
|
}
|
|
|
|
@layer utilities {
|
|
@tailwind utilities;
|
|
}
|
|
|
|
@layer utilities {
|
|
.no-scrollbar::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
.no-scrollbar {
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
scrollbar-width: none; /* Firefox */
|
|
}
|
|
}
|