From 5d95fa707c8979abd8abe4c321e41698fd4a9488 Mon Sep 17 00:00:00 2001 From: Mateus Vieira <68292695+mateusvrs@users.noreply.github.com> Date: Wed, 21 Feb 2024 10:21:53 -0300 Subject: [PATCH] =?UTF-8?q?fix(front/home):=20deixa=20tamanho=20dos=20?= =?UTF-8?q?=C3=ADcones=20imut=C3=A1veis=20da=20aplica=C3=A7=C3=A3o,=20sem?= =?UTF-8?q?=20despadroniza=C3=A7=C3=A3o=20(#208)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(front/home): size of trash icon immutable * fix(front/popup): size of down arrow immutable --- .../AsideSchedulePopUp/DisciplineFragment.tsx | 11 ++++++++--- web/app/components/DisciplineBox.tsx | 8 ++++---- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/web/app/components/AsideSchedulePopUp/DisciplineFragment.tsx b/web/app/components/AsideSchedulePopUp/DisciplineFragment.tsx index 9478c92..71f9abb 100644 --- a/web/app/components/AsideSchedulePopUp/DisciplineFragment.tsx +++ b/web/app/components/AsideSchedulePopUp/DisciplineFragment.tsx @@ -27,10 +27,15 @@ function DisciplineFragmentJSX({ handleDisciplineToggle, ...props }: { {discipline.expanded &&
diff --git a/web/app/components/DisciplineBox.tsx b/web/app/components/DisciplineBox.tsx index c5c73d6..19f01cf 100644 --- a/web/app/components/DisciplineBox.tsx +++ b/web/app/components/DisciplineBox.tsx @@ -32,15 +32,15 @@ export default function DisciplineBox({ currentClass, discipline }: DisciplineBo } return ( - +
- Disciplina: {discipline.name} - {discipline.code} + Código: {discipline.code}
-
);