From 8421514e9bcda98c62660e13d879f1ea8f46f639 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Wed, 1 Sep 2021 16:39:07 +0200 Subject: [PATCH] dev21w25a - Minor style changes - Added boilerplate ignores to .gitignore --- .gitignore | 48 +++++++++++++++++++++++++++++++++++++ public/assets/css/style.css | 9 ++++++- 2 files changed, 56 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 541fbbf..af65c73 100644 --- a/.gitignore +++ b/.gitignore @@ -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/ diff --git a/public/assets/css/style.css b/public/assets/css/style.css index 5615b1f..5799aa9 100644 --- a/public/assets/css/style.css +++ b/public/assets/css/style.css @@ -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));