Fix dhcp interfaces markup
This commit is contained in:
parent
f3118c5e2a
commit
fc4a557610
@ -46,7 +46,7 @@ const renderInterfaceValues = ({
|
|||||||
gateway_ip,
|
gateway_ip,
|
||||||
hardware_address,
|
hardware_address,
|
||||||
ip_addresses,
|
ip_addresses,
|
||||||
}) => <div className='d-flex align-items-end col-md'>
|
}) => <div className='d-flex align-items-end dhcp__interfaces-info'>
|
||||||
<ul className="list-unstyled m-0">
|
<ul className="list-unstyled m-0">
|
||||||
{getInterfaceValues({
|
{getInterfaceValues({
|
||||||
gateway_ip,
|
gateway_ip,
|
||||||
@ -77,7 +77,7 @@ const Interfaces = () => {
|
|||||||
return !processingInterfaces
|
return !processingInterfaces
|
||||||
&& interfaces
|
&& interfaces
|
||||||
&& <>
|
&& <>
|
||||||
<div className="row align-items-center pb-2">
|
<div className="row dhcp__interfaces">
|
||||||
<div className="col col__dhcp">
|
<div className="col col__dhcp">
|
||||||
<Field
|
<Field
|
||||||
name="interface_name"
|
name="interface_name"
|
||||||
@ -91,10 +91,10 @@ const Interfaces = () => {
|
|||||||
</option>
|
</option>
|
||||||
{renderInterfaces(interfaces)}
|
{renderInterfaces(interfaces)}
|
||||||
</Field>
|
</Field>
|
||||||
|
</div>
|
||||||
{interfaceValue
|
{interfaceValue
|
||||||
&& renderInterfaceValues(interfaceValue)}
|
&& renderInterfaceValues(interfaceValue)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</>;
|
</>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -12,6 +12,10 @@
|
|||||||
max-width: 50%;
|
max-width: 50%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dhcp__interfaces {
|
||||||
|
padding-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-width: 991.98px) {
|
@media (max-width: 991.98px) {
|
||||||
.dhcp-form__button {
|
.dhcp-form__button {
|
||||||
margin: 0.5rem 0;
|
margin: 0.5rem 0;
|
||||||
@ -28,4 +32,13 @@
|
|||||||
flex: 0 0 100%;
|
flex: 0 0 100%;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dhcp__interfaces {
|
||||||
|
flex-direction: column;
|
||||||
|
padding-bottom: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dhcp__interfaces-info {
|
||||||
|
padding-left: 1.5rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user