dev21w25a

- Minor style changes
- Added boilerplate ignores to .gitignore
This commit is contained in:
Victor Westerlund 2021-09-01 16:39:07 +02:00
parent 49496c9bdc
commit 8421514e9b
2 changed files with 56 additions and 1 deletions

48
.gitignore vendored
View file

@ -1 +1,49 @@
.well-known/
/node_modules
/public/hot
/public/storage
/storage/*.key
/vendor
.env
.env.backup
.phpunit.result.cache
Homestead.json
Homestead.yaml
npm-debug.log
yarn-error.log
public/robots.txt
# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
Icon?
ehthumbs.db
Thumbs.db
.directory
# Tool specific files #
#######################
# vim
*~
*.swp
*.swo
# sublime text & textmate
*.sublime-*
*.stTheme.cache
*.tmlanguage.cache
*.tmPreferences.cache
# Eclipse
.settings/*
# JetBrains, aka PHPStorm, IntelliJ IDEA
.idea/*
# NetBeans
nbproject/*
# Visual Studio Code
.vscode
# Sass preprocessor
.sass-cache/

View file

@ -155,10 +155,17 @@ header {
height: var(--size);
display: flex;
align-items: center;
gap: var(--padding);
font-weight: bold;
}
header > *:nth-child(2) {
margin-left: 10px;
}
header > *:nth-child(n+3) {
margin-left: var(--padding);
}
header .hamburger {
width: calc(var(--size) - (var(--padding) * 2));
height: calc(var(--size) - (var(--padding) * 2));