cinera.css: Set min-height on search page links
This commit tries to fix a "Clickable elements too close together" error: https://support.google.com/webmasters/answer/9063469#touch_elements_too_close
This commit is contained in:
parent
4dc034ecc3
commit
2deb244cce
|
@ -23,7 +23,7 @@ typedef struct
|
|||
version CINERA_APP_VERSION = {
|
||||
.Major = 0,
|
||||
.Minor = 10,
|
||||
.Patch = 2
|
||||
.Patch = 3
|
||||
};
|
||||
|
||||
#include <stdarg.h> // NOTE(matt): varargs
|
||||
|
|
|
@ -986,6 +986,13 @@ ul.cineraNavPlain li.current > a {
|
|||
|
||||
/* NOTE(matt): Mobile Style */
|
||||
|
||||
#cineraIndex.mobile .cineraIndexEntries div a {
|
||||
display: flex;
|
||||
box-sizing: border-box;
|
||||
align-items: center;
|
||||
min-height: 10mm; /* NOTE(matt): From https://web.dev/accessible-tap-targets/ */
|
||||
}
|
||||
|
||||
#cineraIndex.mobile #cineraResults .dayContainer {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue