add extra vertical space in tag clouds

This commit is contained in:
Collin M. Barrett 2019-09-02 20:13:52 -05:00
parent ec8a4cae4d
commit 43efed0f57
3 changed files with 9 additions and 3 deletions

View file

@ -21,7 +21,7 @@ export const App: React.FC = () =>
</Switch>
</div>
</Content>
<Footer style={{ textAlign: 'center', padding: '6px 50px', background: '#fff' }}>
<Footer style={{ textAlign: 'center', padding: '6px 50px', background: '#fff', lineHeight: '28px' }}>
<CopyrightAuthor />
<Twitter />
<Community />

View file

@ -1,4 +1,7 @@
/* allow for 2nd row's tags' bottom border to not be chopped in AllListsTable */
.grow {
/* allow for 2nd row's tags' bottom border to not be chopped in AllListsTable */
max-height: none !important;
/* leave vertical gap between rows of tags */
line-height: 28px;
}

View file

@ -1,4 +1,7 @@
/* allow for 2nd row's tags' bottom border to not be chopped in AllListsTable */
.grow {
/* allow for 2nd row's tags' bottom border to not be chopped in AllListsTable */
max-height: none !important;
/* leave vertical gap between rows of tags */
line-height: 28px;
}