add responsiveness
This commit is contained in:
@@ -17,7 +17,7 @@ const AddServices = () => {
|
||||
const [triggerVariableDropDown, setTriggerVariableDropDown] = useState(false);
|
||||
const [triggerAddVariable, setTriggerAddVariable] = useState(false);
|
||||
const [triggerAddVolume, setTriggerAddVolume] = useState(false);
|
||||
const [triggeAddConfigMap, setTriggerAddConfigMap] = useState(false);
|
||||
const [triggerAddConfigMap, setTriggerAddConfigMap] = useState(false);
|
||||
|
||||
const {
|
||||
register,
|
||||
@@ -55,7 +55,7 @@ const AddServices = () => {
|
||||
{triggerAddVolume && (
|
||||
<AddVolumeModal setTriggerAddVolume={setTriggerAddVolume} />
|
||||
)}
|
||||
{triggeAddConfigMap && (
|
||||
{triggerAddConfigMap && (
|
||||
<AddConfigMapModal setTriggerAddConfigMap={setTriggerAddConfigMap} />
|
||||
)}
|
||||
<div className={globalStyle.mainContainer}>
|
||||
|
||||
@@ -116,7 +116,7 @@ const AddProject = () => {
|
||||
<th>Version</th>
|
||||
<th>Health</th>
|
||||
<th>Status</th>
|
||||
<th width="15%">Image</th>
|
||||
<th width="10%">Image</th>
|
||||
<th>Ingress</th>
|
||||
<th>Port</th>
|
||||
<th>Actions</th>
|
||||
|
||||
@@ -18,7 +18,8 @@
|
||||
text-wrap: nowrap;
|
||||
color: #85869b;
|
||||
font-family: Inter;
|
||||
font-size: 13px;
|
||||
z-index: 5;
|
||||
font-size: var(--table-font-size);
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
line-height: normal;
|
||||
@@ -39,7 +40,8 @@
|
||||
color: #eeeffd;
|
||||
font-family: Inter;
|
||||
overflow-wrap: anywhere;
|
||||
font-size: 13px;
|
||||
|
||||
font-size: var(--table-font-size);
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
line-height: normal;
|
||||
@@ -56,8 +58,9 @@
|
||||
.servicesHealth,
|
||||
.servicesStatus {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
align-items: start;
|
||||
gap: 4px;
|
||||
width: 100%;
|
||||
align-self: stretch;
|
||||
}
|
||||
.servicesHealth > div,
|
||||
@@ -128,6 +131,7 @@
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
|
||||
align-self: stretch;
|
||||
}
|
||||
.iconButton {
|
||||
|
||||
@@ -69,7 +69,7 @@ const AddConfigMapModal = (props) => {
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.addButtonContainer}>
|
||||
<PrimaryButton />
|
||||
<PrimaryButton text=" Add " icon={<AddIcon />} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -61,7 +61,7 @@ const AddVolumeModal = (props) => {
|
||||
</div>
|
||||
</div>
|
||||
<div className={styles.addButtonContainer}>
|
||||
<PrimaryButton />
|
||||
<PrimaryButton text=" Add " icon={<AddIcon />} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user