Add custom base.css for falafel theme

this copies from bobcat/base.css and just adds margin-bottom for p tag.

this was done b/c in certain Buefy dialogs etc. the p tags are too close
together.  not sure if this change breaks anything else yet...
This commit is contained in:
Lance Edgar 2021-01-21 17:37:17 -06:00
parent 523ea6e0df
commit 0035a4129a
2 changed files with 24 additions and 1 deletions

View file

@ -0,0 +1,23 @@
/******************************
* general
******************************/
p {
margin-bottom: 1rem;
}
/******************************
* tweaks for root user
******************************/
.navbar .navbar-end .navbar-link.root-user,
.navbar .navbar-end .navbar-link.root-user:hover,
.navbar .navbar-end .navbar-link.root-user.is_active,
.navbar .navbar-end .navbar-item.root-user,
.navbar .navbar-end .navbar-item.root-user:hover,
.navbar .navbar-end .navbar-item.root-user.is_active {
background-color: red;
font-weight: bold;
}