Skip to content

Commit

Permalink
increased font size
Browse files Browse the repository at this point in the history
  • Loading branch information
revenz committed Jun 6, 2023
1 parent 366cb39 commit 6308701
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 18 deletions.
9 changes: 8 additions & 1 deletion docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ hyperlink(){
}

cleanup() {
rm -rf build
rm -rf build >/dev/null 2>&1
docker buildx rm fenrusbuilder >/dev/null 2>&1
exit
}
Expand All @@ -29,6 +29,11 @@ docker container rm fenrus >/dev/null 2>&1
docker buildx rm fenrusbuilder >/dev/null 2>&1

rm -rf build
if [ -d "build" ]; then
echo /build exists, delete before continuing
exit
fi

docker build -t docker-build -f DockerfileBuild . && docker run --rm -v "$(pwd)/build:/build" docker-build
if [ -n "$(find "build" -maxdepth 0 -type d -empty 2>/dev/null)" ]; then
echo "Build failed"
Expand All @@ -54,6 +59,8 @@ else
docker buildx build -t fenrus --platform linux/amd64 -f Dockerfile .
fi

echo Docker built

cleanup

if [ "$1" = "--publish" ]; then
Expand Down
2 changes: 1 addition & 1 deletion wwwroot/css/01_site.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ html {
min-height: 100%;
// font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"
font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size:11px;
font-size:13px;
font-weight: 400;
}
@media only screen and (min-resolution: 108dpi), only screen and (min-resolution: 1.08dppx) {
Expand Down
11 changes: 2 additions & 9 deletions wwwroot/css/fdrive/app.css

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

9 changes: 2 additions & 7 deletions wwwroot/css/fdrive/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,9 @@
height:calc(100% - var(--tabs-height));
user-select: none;
}
--grid-width:72px;
--grid-height:80px;
--grid-width: 7rem;
--grid-height: 7.5rem;
--font-size:1rem;
@media only screen and (min-resolution: 108dpi), only screen and (min-resolution: 1.08dppx) {
--grid-width:84px;
--grid-height:96px;
--font-size:0.9rem;
}
.group {
+ .group {
margin-top:1rem;
Expand Down

0 comments on commit 6308701

Please sign in to comment.