Fix tiny icons caused by css pollution (#1327)

This commit is contained in:
Christopher Speller 2021-10-04 01:06:19 -07:00 committed by GitHub
parent ae8bf57160
commit ee721c89f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 7 deletions

View file

@ -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');
}

View file

@ -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 {

View file

@ -10,7 +10,7 @@ export default function LogoIcon(): JSX.Element {
return (
<CompassIcon
icon='product-boards'
className='LogoIcon'
className='boards-rhs-icon'
/>
)
}