Skip to content

Commit

Permalink
fix(apps/frontend-manage): ensure that activity evaluation sidebar re…
Browse files Browse the repository at this point in the history
…scales during resizing
  • Loading branch information
sjschlapbach committed Dec 22, 2024
1 parent c8e79fc commit 1e721db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function ChoicesSidebar({
return (
<div
className={twMerge(
'order-1 flex flex-none flex-col justify-between overflow-hidden border-l px-4 py-2 md:order-2 md:w-64 lg:w-72 xl:w-80',
'order-1 flex w-full flex-none flex-col justify-between overflow-hidden px-3 py-2 md:order-2',
textSize.text
)}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function FTSidebar({ instance, textSize, showSolution, type }: FTSidebarProps) {
return (
<div
className={twMerge(
'order-1 flex flex-none flex-col justify-between overflow-hidden border-l px-4 py-2 md:order-2 md:w-64 lg:w-72 xl:w-80',
'order-1 flex w-full flex-none flex-col justify-between overflow-hidden px-3 py-2 md:order-2',
textSize.text
)}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function NRSidebar({
return (
<div
className={twMerge(
'order-1 flex flex-none flex-col justify-between overflow-hidden border-l px-4 py-2 md:order-2 md:w-64 lg:w-72 xl:w-80',
'order-1 flex w-full flex-none flex-col justify-between overflow-hidden px-3 py-2 md:order-2',
textSize.text
)}
>
Expand Down

0 comments on commit 1e721db

Please sign in to comment.