1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-09-17 08:56:23 -07:00

increase padding for recent posts on front page

This commit is contained in:
Eggbertx 2022-04-30 00:19:14 -07:00
parent cf5e1b95d7
commit 7255d54050
4 changed files with 19 additions and 17 deletions

View file

@ -247,13 +247,14 @@ div#recent-posts {
display: block;
width: 90%;
}
div#recent-posts div.recent-post {
div.recent-post {
vertical-align: top;
display: inline-block;
word-wrap: break-word;
overflow: hidden;
margin-top: 5px;
padding: 5px 0 3px;
padding: 6px;
position: relative;
width: 200px;
max-height: 320px;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -48,19 +48,20 @@ div#recent-posts {
margin:auto;
display: block;
width:90%;
div.recent-post {
vertical-align: top;
display: inline-block;
word-wrap: break-word;
overflow: hidden;
margin-top: 5px;
padding: 5px 0 3px;
position: relative;
width: 200px;
max-height: 320px;
margin-bottom: 10px;
text-align:center;
}
}
div.recent-post {
vertical-align: top;
display: inline-block;
word-wrap: break-word;
overflow: hidden;
margin-top: 5px;
padding: 6px;
position: relative;
width: 200px;
max-height: 320px;
margin-bottom: 10px;
text-align:center;
}
div#frontpage {