diff options
Diffstat (limited to 'posts.css')
| -rw-r--r-- | posts.css | 18 | 
1 files changed, 12 insertions, 6 deletions
@@ -1,14 +1,20 @@  #tag_list {    width: 100%; -  display: flex; -  flex-direction: row; -  align-items: center; -  column-gap: 4px; +  display: grid; +  grid-template-columns: repeat(3, 1fr); +  column-gap: 8px; +  row-gap: 8px  } -#tag_list > button { -  padding: 8px; +#tag_list  button { +  padding: 16px;    cursor: pointer; +  border: 1px solid transparent; +  border-radius: 3px; +  font-family: inherit; +  font-size: 16px; +  width: 100%; +  height: 100%;  }  #post_list {  | 
