mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
add extra vertical space in tag clouds
This commit is contained in:
parent
ec8a4cae4d
commit
43efed0f57
3 changed files with 9 additions and 3 deletions
|
|
@ -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 />
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue