mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-09-18 09:29:24 +00:00

* Added footer with blank links to be filled * Cookie consent to match V1 * Made scrolling work on tool search results * Made scrolling the same on tool search, tool picker and workbench * Cleaned up height variables, view height only used at workbench level <img width="1525" height="1270" alt="{F3C1B15F-A4BE-4DF0-A5A8-92D2A3B14443}" src="https://github.com/user-attachments/assets/0c23fe35-9973-45c0-85af-0002c5ff58d2" /> <img width="1511" height="1262" alt="{4DDD51C0-4BC5-4E9F-A4F2-E5F49AF5F5FD}" src="https://github.com/user-attachments/assets/2596d980-0312-4cd7-ad34-9fd3a8d1869e" /> --------- Co-authored-by: Connor Yoh <connor@stirlingpdf.com> Co-authored-by: James Brunton <jbrunton96@gmail.com>
55 lines
1.1 KiB
CSS
55 lines
1.1 KiB
CSS
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
|
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
monospace;
|
|
}
|
|
|
|
/* CSS Variables */
|
|
:root {
|
|
--footer-height: 2rem;
|
|
}
|
|
|
|
/* Footer link styling - make buttons and links look identical */
|
|
.footer-link {
|
|
color: var(--mantine-color-gray-6);
|
|
text-decoration: none;
|
|
transition: color 0.2s ease;
|
|
border: none;
|
|
background: none;
|
|
cursor: pointer;
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
padding: 0;
|
|
}
|
|
|
|
.footer-link:hover {
|
|
color: var(--mantine-color-blue-8);
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.stirling-link {
|
|
color: var(--mantine-color-blue-6);
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
.stirling-link:hover {
|
|
color: var(--mantine-color-blue-8);
|
|
text-decoration: underline;
|
|
}
|