From f206ce3bb27e85cb05cb2c4ad5274c6c2ae03514 Mon Sep 17 00:00:00 2001 From: a Date: Sun, 3 Jul 2022 10:50:41 -0500 Subject: [PATCH] filters lol --- src/App.vue | 23 ++++++-- src/components/CharacterCard.vue | 28 +++++---- src/components/CharacterInventory.vue | 21 ++++--- src/components/CharacterRoulette.vue | 24 ++++---- src/lib/columns.ts | 24 ++++++-- src/lib/lifeto.ts | 82 ++++++++++++++++++++------- src/lib/storage.ts | 49 ++++++++++++++++ src/lib/table.ts | 30 ++++++++-- src/lib/trickster.ts | 11 +++- src/session_storage.ts | 3 - src/state/state.ts | 70 +++++++++++++++++++++-- 11 files changed, 290 insertions(+), 75 deletions(-) diff --git a/src/App.vue b/src/App.vue index c1123d0..056cdba 100644 --- a/src/App.vue +++ b/src/App.vue @@ -29,27 +29,42 @@ import Sidebar from "./components/Sidebar.vue"; -moz-osx-font-smoothing: grayscale; text-align: center; color: #2c3e50; - margin-top: 60px; height: 100vh; overflow-y: hidden; } - +.handsontable th { + border-right: 0px !important; + border-left: 0px !important; + border-top: 1px white !important; + border-bottom: 1px white !important; + line-height: 0 !important; + vertical-align: middle !important; + text-align: left !important; + min-width: 10px !important; + width: 20px !important; +} .handsontable td { border-right: 0px !important; border-left: 0px !important; border-top: 1px white !important; border-bottom: 1px white !important; background-color: #F7F7F7 !important; + vertical-align: middle !important; } - .handsontable tr { border-radius: 10px !important; } +.handsontable .changeType { + margin: 0px !important; + border:0px !important; + float: none !important; +}