Fix tiny icons caused by css pollution (#1327)
This commit is contained in:
parent
ae8bf57160
commit
ee721c89f1
3 changed files with 4 additions and 7 deletions
|
@ -4,7 +4,7 @@
|
|||
function blockList(line) {
|
||||
return line.startsWith('.focalboard-body') ||
|
||||
line.startsWith('.GlobalHeaderComponent') ||
|
||||
line.startsWith('.channel-header__icon .LogoIcon') ||
|
||||
line.startsWith('.boards-rhs-icon') ||
|
||||
line.startsWith('.focalboard-plugin-root');
|
||||
}
|
||||
|
||||
|
|
|
@ -1,8 +1,5 @@
|
|||
.channel-header__icon .LogoIcon {
|
||||
height: 24px;
|
||||
font-size: 16px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
.boards-rhs-icon {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.focalboard-body .feature-global-header>header {
|
||||
|
|
|
@ -10,7 +10,7 @@ export default function LogoIcon(): JSX.Element {
|
|||
return (
|
||||
<CompassIcon
|
||||
icon='product-boards'
|
||||
className='LogoIcon'
|
||||
className='boards-rhs-icon'
|
||||
/>
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue