Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
content="Browser-based SQLite client and SQLite browser with OPFS persistence."
/>
<meta name="theme-color" content="#141414" />
<link rel="icon" type="image/svg+xml" href="/scc.svg" />
<link rel="icon" type="image/svg+xml" href="scc.svg" />
</head>
<body class="min-vh-100 d-flex flex-column">
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-white shadow-sm py-2">
<div class="container-fluid">
<a class="navbar-brand d-flex align-items-center" href="/">
<img src="/scc.svg" alt="Logo" width="24" height="24" />
<a class="navbar-brand d-flex align-items-center" href="./">
<img src="scc.svg" alt="Logo" width="24" height="24" />
<span class="fs-5 fw-bold text-dark ms-3">SQLite Client</span>
</a>

Expand Down
16 changes: 8 additions & 8 deletions src/scss/_brutopia.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
2.15 Pagination
2.16 Table
2.17 Progress
4. Pages
4.0 Layout
4.1 Auth
4.2 Error
5. Utilities
3. Pages
3.0 Layout
3.1 Auth
3.2 Error
4. Utilities


*/
Expand Down Expand Up @@ -98,8 +98,8 @@
// - 2.19. SCL-SQL
@import './components/scl-sql';

// - 4.0 Layout
@import './layouts/main.scss';
// - 3.0 Layout
@import './layouts/main';

// - 5.0 Utilities
// - 4.0 Utilities
@import './utilities';
1 change: 0 additions & 1 deletion src/scss/components/_scl-editor.scss

This file was deleted.

1 change: 1 addition & 0 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ function getHtmlInputs() {

export default defineConfig({
root: resolve(__dirname, 'src'),
base: './',
envDir: resolve(__dirname),
resolve: {
alias: {
Expand Down