0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 22:52:40 +00:00

Increase minimum height of brewItem in CSS so all four items are always visible.

Adjust eslint line in `server.js` to re-enable the test with a slightly higher maximum value.
This commit is contained in:
G.Ambatte
2021-01-22 21:24:22 +13:00
parent d88b04783d
commit bcbf596aa8
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@
box-sizing : border-box;
overflow : hidden;
width : 48%;
min-height : 80px;
min-height : 105px;
margin-right : 15px;
margin-bottom : 15px;
padding : 5px 15px 5px 8px;

View File

@@ -1,4 +1,4 @@
/* eslint-disable max-lines */
/*eslint max-lines: ["warn", {"max": 250, "skipBlankLines": true, "skipComments": true}]*/
const _ = require('lodash');
const jwt = require('jwt-simple');
const expressStaticGzip = require('express-static-gzip');