Skip to content

Commit c8adc40

Browse files
committed
fix: correct class name for rounded corners
1 parent d1653a9 commit c8adc40

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/server/trmnl/screens/TodoListDisplay.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ const AssignmentCompletionBox: FC<{
108108
label: string;
109109
}> = ({ mode, className, count, label }) => (
110110
<div
111-
className={`flex ${mode === 'horizontal' ? 'flex--row' : 'w--full flex--col'} flex--center rounded-small p--2 ${className}`}
112-
style={{ borderRadius: '8px', flex: 1 }}
111+
className={`flex ${mode === 'horizontal' ? 'flex--row' : 'w--full flex--col'} flex--center rounded--small p--2 ${className}`}
112+
style={{ flex: 1 }}
113113
>
114114
<p
115115
className={`${mode === 'horizontal' ? 'label' : 'title title--small'} text-stroke`}
@@ -243,7 +243,7 @@ const AssignmentItem: FC<{ assignment: AssignmentWithCourse }> = ({
243243
style={{
244244
flexGrow: 1,
245245
isolation: 'isolate',
246-
minWidth: '0px',
246+
minWidth: 0,
247247
position: 'relative',
248248
}}
249249
>

0 commit comments

Comments
 (0)