Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/components/Print/Print.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,22 @@ export default function Print(props) {
}

return (
<div className="sidebar-item sidebar-item--disabled">
<div className="relative flex flex-wrap text-[15px] my-[0.6em]">
<BarIcon
className="sidebar-item__toggle"
className="flex-none mt-[0.125em] mr-2 text-[#aaa] dark:text-[#69a8ee]"
width={15}
height={17}
fill="#175d96"
/>
<a
className="sidebar-item__title flex items-center flex-nowrap"
className="flex-1 max-w-[85%] overflow-hidden whitespace-nowrap text-ellipsis flex items-center flex-nowrap text-[#2b3a42] dark:text-[#b8b8b8]"
href={printUrl}
rel="nofollow noopener noreferrer"
title="Print"
target="_blank"
>
Print Section
<img src={icon} alt="Printer Icon" className="h-[20px] w-[27px]" />
<img src={icon} width={27} height={20} alt="Printer Icon" />
</a>
</div>
);
Expand Down
Loading