Franknoirot/ux papercuts 1 (#596)
* Properly show dark logo in System-light theme * Fix linting errors for fill-rule and clip-rule * Support system-light theme on Parametric Modeling step as well Signed-off-by: Frank Noirot <frank@kittycad.io> * Fix line number ref in Parametric Modeling copy Signed-off-by: Frank Noirot <frank@kittycad.io> * Copyediting tweaks * Fix part name disappearing even when there is space --------- Signed-off-by: Frank Noirot <frank@kittycad.io>
This commit is contained in:
@ -17,7 +17,7 @@ const ProjectSidebarMenu = ({
|
||||
return renderAsLink ? (
|
||||
<Link
|
||||
to={'../'}
|
||||
className="flex items-center gap-4 my-2"
|
||||
className="h-9 max-h-min min-w-max border-0 p-0.5 pr-2 flex items-center gap-4 focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-energy-50"
|
||||
data-testid="project-sidebar-link"
|
||||
>
|
||||
<img
|
||||
@ -26,7 +26,7 @@ const ProjectSidebarMenu = ({
|
||||
className="h-9 w-auto"
|
||||
/>
|
||||
<span
|
||||
className="text-sm text-chalkboard-110 dark:text-chalkboard-20 min-w-max truncate"
|
||||
className="text-sm text-chalkboard-110 dark:text-chalkboard-20 whitespace-nowrap hidden lg:block"
|
||||
data-testid="project-sidebar-link-name"
|
||||
>
|
||||
{project?.name ? project.name : 'KittyCAD Modeling App'}
|
||||
@ -43,7 +43,7 @@ const ProjectSidebarMenu = ({
|
||||
alt="KittyCAD App"
|
||||
className="h-full w-auto"
|
||||
/>
|
||||
<span className="text-sm text-chalkboard-110 dark:text-chalkboard-20 whitespace-nowrap hidden 2xl:block">
|
||||
<span className="text-sm text-chalkboard-110 dark:text-chalkboard-20 whitespace-nowrap hidden lg:block">
|
||||
{isTauri() && project?.name ? project.name : 'KittyCAD Modeling App'}
|
||||
</span>
|
||||
</Popover.Button>
|
||||
|
Reference in New Issue
Block a user