f5e0b1f3 by Jeff Balicki

mobile fix

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 49d3c301
...@@ -17091,6 +17091,7 @@ ul.sf_date_field .sf-datepicker { ...@@ -17091,6 +17091,7 @@ ul.sf_date_field .sf-datepicker {
17091 width: 100%; 17091 width: 100%;
17092 margin: 0px; 17092 margin: 0px;
17093 height: 100vh; 17093 height: 100vh;
17094 padding-top: 40px;
17094 } 17095 }
17095 } 17096 }
17096 @media screen and (max-width: 900px) { 17097 @media screen and (max-width: 900px) {
...@@ -17267,6 +17268,12 @@ ul.sf_date_field .sf-datepicker { ...@@ -17267,6 +17268,12 @@ ul.sf_date_field .sf-datepicker {
17267 color: #000000; 17268 color: #000000;
17268 text-decoration: none; 17269 text-decoration: none;
17269 flex-direction: row; 17270 flex-direction: row;
17271 word-break: break-all;
17272 }
17273 @media screen and (max-width: 950px) {
17274 #search-wrapper #main > article a {
17275 flex-direction: column;
17276 }
17270 } 17277 }
17271 #search-wrapper #main > article a:hover h2.entry-title, #search-wrapper #main > article a:hover .entry-title.h2 { 17278 #search-wrapper #main > article a:hover h2.entry-title, #search-wrapper #main > article a:hover .entry-title.h2 {
17272 text-decoration: underline; 17279 text-decoration: underline;
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
...@@ -459,6 +459,7 @@ ul.sf_date_field { ...@@ -459,6 +459,7 @@ ul.sf_date_field {
459 width: 100%; 459 width: 100%;
460 margin: 0px; 460 margin: 0px;
461 height: 100vh; 461 height: 100vh;
462 padding-top: 40px;
462 } 463 }
463 464
464 .searchandfilter { 465 .searchandfilter {
......
...@@ -53,6 +53,10 @@ ...@@ -53,6 +53,10 @@
53 color: #000000; 53 color: #000000;
54 text-decoration: none; 54 text-decoration: none;
55 flex-direction: row; 55 flex-direction: row;
56 word-break: break-all;
57 @media screen and (max-width: 950px) {
58 flex-direction: column;
59 }
56 60
57 &:hover { 61 &:hover {
58 h2.entry-title { 62 h2.entry-title {
......