diff options
| -rw-r--r-- | apioforum/static/style.css | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/apioforum/static/style.css b/apioforum/static/style.css index 86611f6..b456e26 100644 --- a/apioforum/static/style.css +++ b/apioforum/static/style.css @@ -104,7 +104,6 @@ nav#navbar .links { display: flex; }  }  .thread-listing-title {   	overflow: hidden; -	font-size: larger;   	white-space: nowrap;  	text-overflow: ellipsis;  	flex-grow: 1; @@ -137,7 +136,9 @@ nav#navbar .links { display: flex; }  .thread-preview-ts { font-weight: bold; }  /* wide screens */ -@media all and (min-width: 600px) { } +@media all and (min-width: 600px) {  +	.thread-listing-title { font-size: larger; } +}  /* small screens */  @media not all and (min-width: 600px) { | 
