mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
fix thread icon size and color (#26288)
This commit is contained in:
parent
0e8640afeb
commit
782f81d22f
@ -11,15 +11,21 @@
|
||||
|
||||
.icon {
|
||||
padding: 3px;
|
||||
margin-right: 8px;
|
||||
margin-left: 1px;
|
||||
margin-right: 7px;
|
||||
margin-left: -1px;
|
||||
|
||||
svg {
|
||||
fill: rgba(var(--sidebar-text-rgb), 0.75);
|
||||
fill: rgba(var(--sidebar-text-rgb), 0.64);
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
|
||||
&.unread-title {
|
||||
svg {
|
||||
fill: var(--sidebar-text);
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
padding-right: 16px;
|
||||
|
||||
|
@ -7,8 +7,8 @@ import type {HTMLAttributes} from 'react';
|
||||
const ThreadsIcon = (attrs: HTMLAttributes<SVGElement>) => {
|
||||
return (
|
||||
<svg
|
||||
width='14'
|
||||
height='13'
|
||||
width='18'
|
||||
height='18'
|
||||
viewBox='0 0 14 13'
|
||||
fill='none'
|
||||
xmlns='http://www.w3.org/2000/svg'
|
||||
|
Loading…
Reference in New Issue
Block a user