Styling changes to increase reactivity of CRM UI.

This commit is contained in:
rocketdebris 2026-01-02 15:31:41 -05:00
parent 58e69596bb
commit 702e718431
3 changed files with 50 additions and 25 deletions

View file

@ -1,6 +1,6 @@
<template>
<div class="overview-container">
<template v-if="!editMode">
<template v-if="!editMode && !isNew">
<Button
@click="toggleEditMode"
icon="pi pi-pencil"
@ -713,8 +713,8 @@ const handleCancel = () => {
}
.status-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
display: flex;
flex-wrap: wrap;
gap: 1rem;
}