max height on textareas for install details modal

This commit is contained in:
Gabriel Hernandez 2024-07-23 13:01:18 +01:00
parent 76642bdc76
commit 22f46f5bf4
2 changed files with 6 additions and 4 deletions

View file

@ -1,10 +1,7 @@
import React from "react";
import { useQuery } from "react-query";
import {
SoftwareInstallStatus,
getInstallStatusPredicate,
} from "interfaces/software";
import { SoftwareInstallStatus } from "interfaces/software";
import mdmApi from "services/entities/mdm";
import Modal from "components/Modal";

View file

@ -19,4 +19,9 @@
overflow-wrap: break-word;
}
}
&__output-textarea {
max-height: 300px;
overflow-y: auto;
}
}