Skip to content

Commit

Permalink
more readable padding size
Browse files Browse the repository at this point in the history
  • Loading branch information
dhonus committed Mar 9, 2023
1 parent 389e976 commit 5ff8531
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 34 deletions.
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "arcanum",
"private": true,
"version": "1.0.6",
"version": "1.0.9",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -13,10 +13,10 @@
"@tauri-apps/api": "^1.2.0"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^2.0.3",
"@tauri-apps/cli": "^1.2.2",
"sass": "^1.58.3",
"svelte": "^3.54.0",
"vite": "^4.0.0"
"vite": "^4.0.4"
}
}
12 changes: 2 additions & 10 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ tauri = { version = "1.2", features = ["fs-all", "shell-open"] }
reqwest = { version = "0.11.14", features = ["blocking", "json", "gzip"] }
rss = {version = "2.0.2", features = ["serde"] }
tokio = "1.25.0"
xml-rs = "0.8.4"
quick-xml = "0.27.1"
csv = "1.2.0"
csv = "1.2.1"
rand = "0.8.5"
chrono = "0.4.23"
futures = "0.3.26"
Expand Down
2 changes: 0 additions & 2 deletions src-tauri/src/routes/parser.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
extern crate xml;

use std::fs::File;
use std::io::BufReader;
use std::{io};
Expand Down
4 changes: 2 additions & 2 deletions src/lib/CollapsibleSection.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@
align-items: center;
gap: .6rem;
margin: .3rem 0;
padding: .6rem 0.5rem;
padding: .3rem 0.5rem;
background: none;
color: whitesmoke;
border-radius: 7px;
font-weight: bold;
font-size: .9rem;
font-size: .8rem;
width: 100%;
border: 1px solid transparent;
}
Expand Down
6 changes: 2 additions & 4 deletions src/style.sass
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,9 @@ div.layout
border-radius: 5px
flex: 1
border: 1px solid $border-color
transition: all .2s ease-in-out
&:focus
outline: none
background: #3b3b3b
transition: all .2s ease-in-out
div.spinner
display: flex
justify-content: center
Expand Down Expand Up @@ -125,12 +123,12 @@ div.layout
display: flex
flex-direction: row
align-items: center
padding: 0.4rem 1.6rem
padding: 0.3rem 1.6rem
border-radius: 7px
border: 1px solid transparent
margin: .3rem 0
p
font-size: 1rem
font-size: .8rem
margin: 0
flex: 1
span.count
Expand Down

0 comments on commit 5ff8531

Please sign in to comment.