mirror of https://github.com/rancher/ui.git
Merge pull request #4865 from nwmac/eks-radio-button-layout
Fix eks radio button layout
This commit is contained in:
commit
44606580cc
|
|
@ -396,6 +396,16 @@ input.input-lg,
|
|||
padding: 5px 0;
|
||||
}
|
||||
|
||||
// Ensure lists of radio buttons stack vertically and have appropriate spacing between options
|
||||
.radio-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
> label:not(:first-child) {
|
||||
margin-top: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.image-radio-container {
|
||||
@include clearfix;
|
||||
|
||||
|
|
|
|||
|
|
@ -121,7 +121,7 @@
|
|||
{{t "nodeDriver.amazoneks.role.label"}}
|
||||
</label>
|
||||
{{#if (eq step 2)}}
|
||||
<div class="radio pt-0">
|
||||
<div class="radio pt-0 radio-list">
|
||||
<label>
|
||||
{{radio-button
|
||||
selection=serviceRoleMode
|
||||
|
|
|
|||
|
|
@ -110,7 +110,7 @@
|
|||
{{t "clusterNew.amazoneks.role.label"}}
|
||||
</label>
|
||||
{{#if (eq step 2)}}
|
||||
<div class="radio pt-0">
|
||||
<div class="radio pt-0 radio-list">
|
||||
<label>
|
||||
{{radio-button
|
||||
selection=serviceRoleMode
|
||||
|
|
|
|||
Loading…
Reference in New Issue