feat: Reduce height of history for better viewing of tasks

This commit is contained in:
Jakob Reiter 2023-12-21 09:55:54 +01:00
parent f8b0a3b587
commit bb5e4b56a3
2 changed files with 31 additions and 27 deletions

View File

@ -1,39 +1,43 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0"> <meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Vikunja</title> <title>Vikunja</title>
<meta name="description" content="Vikunja (/vɪˈkuːnjə/) - The to-do app to organize your life."> <meta name="description" content="Vikunja (/vɪˈkuːnjə/) - The to-do app to organize your life.">
<meta name="theme-color" content="#1973ff"/> <meta name="theme-color" content="#1973ff" />
<link rel="icon" href="/favicon.ico"> <link rel="icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/images/icons/apple-touch-icon-180x180.png"/> <link rel="apple-touch-icon" href="/images/icons/apple-touch-icon-180x180.png" />
<!--__vite-plugin-inject-preload__--> <!--__vite-plugin-inject-preload__-->
</head> </head>
<body> <body>
<noscript> <noscript>
<strong>We're sorry but Vikunja doesn't work properly without JavaScript enabled. Please enable it to continue.</strong> <strong>We're sorry but Vikunja doesn't work properly without JavaScript enabled. Please enable it to
</noscript> continue.</strong>
<div id="app"></div> </noscript>
<script type="module" src="/src/main.ts"></script> <div id="app"></div>
<script> <script type="module" src="/src/main.ts"></script>
// <script>
// This variable points the frontend to the api. //
// It has to be the full url, including the last /api/v1 part and port. // This variable points the frontend to the api.
// You can change this if your api is not reachable on the same port as the frontend. // It has to be the full url, including the last /api/v1 part and port.
window.API_URL = 'http://localhost:3456/api/v1' // You can change this if your api is not reachable on the same port as the frontend.
// Enable error tracking with sentry. If this is set to true, will send anonymized data to window.API_URL = 'https://todo.reiter.io/api/v1'
// our sentry instance to notify us of potential problems. // Enable error tracking with sentry. If this is set to true, will send anonymized data to
window.SENTRY_ENABLED = false // our sentry instance to notify us of potential problems.
window.SENTRY_DSN = 'https://85694a2d757547cbbc90cd4b55c5a18d@o1047380.ingest.sentry.io/6024480' window.SENTRY_ENABLED = false
// If enabled, allows the user to nest projects infinitely, instead of the default 2 levels. window.SENTRY_DSN = 'https://85694a2d757547cbbc90cd4b55c5a18d@o1047380.ingest.sentry.io/6024480'
// This setting might change in the future or be removed completely. // If enabled, allows the user to nest projects infinitely, instead of the default 2 levels.
window.PROJECT_INFINITE_NESTING_ENABLED = false // This setting might change in the future or be removed completely.
// Allow changing the logo and other icons based on various occasions throughout the year. window.PROJECT_INFINITE_NESTING_ENABLED = false
window.ALLOW_ICON_CHANGES = true // Allow changing the logo and other icons based on various occasions throughout the year.
// Allow using a custom logo via external URL. window.ALLOW_ICON_CHANGES = true
window.CUSTOM_LOGO_URL = '' // Allow using a custom logo via external URL.
</script> window.CUSTOM_LOGO_URL = ''
</script>
</body> </body>
</html>
</html>

View File

@ -40,7 +40,7 @@ const filteredProjects = computed(() => {
<style lang="scss" scoped> <style lang="scss" scoped>
.project-grid { .project-grid {
--project-grid-item-height: 150px; --project-grid-item-height: 100px;
--project-grid-gap: 1rem; --project-grid-gap: 1rem;
margin: 0; // reset li margin: 0; // reset li
list-style-type: none; list-style-type: none;