Skip to content

Commit 92c06cd

Browse files
marie-jantleblanc
authored andcommitted
fix(pci.project.private-network): prevent inputs from overlaping (#738)
ref: MANAGER-2672
1 parent 9c5d172 commit 92c06cd

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

packages/manager/modules/pci/src/index.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
min-height: 100%;
1010
}
1111

12+
.minw-0 {
13+
min-width: 0;
14+
}
15+
1216
.overflow-auto {
1317
overflow: auto !important;
1418
}

packages/manager/modules/pci/src/projects/project/private-networks/add/add.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,14 @@
9898
data-label="{{:: 'pci_projects_project_network_private_create_localisation_range' | translate }}">
9999
<div class="d-flex flex-wrap flex-xl-nowrap justify-content-around align-items-center">
100100
<input
101-
class="oui-input mb-0 mr-xl-2"
101+
class="oui-input minw-0 mb-0 mr-xl-2"
102102
type="text"
103103
name="{{:: region + '-range-start' }}"
104104
data-ng-model="subnet.start"
105105
disabled>
106106
<span>-</span>
107107
<input
108-
class="oui-input mb-0 ml-xl-2"
108+
class="oui-input minw-0 mb-0 ml-xl-2"
109109
type="text"
110110
name="{{:: region + '-range-end' }}"
111111
data-ng-model="subnet.end"

0 commit comments

Comments
 (0)