Updated looping icon and spacing
- updated looping icon (cyan + black) - updated looping label type - to p - removed label margin
This commit is contained in:
parent
555b7ed22f
commit
f4a40b8a2b
|
@ -123,17 +123,19 @@
|
||||||
class="splitHeader"
|
class="splitHeader"
|
||||||
>
|
>
|
||||||
<div class="center-items">
|
<div class="center-items">
|
||||||
<svg
|
<div class="icon-background-loop">
|
||||||
width="28px"
|
<svg
|
||||||
height="28px"
|
width="20px"
|
||||||
class="spectrum-Icon"
|
height="20px"
|
||||||
style="color:var(--spectrum-global-color-gray-700);"
|
class="spectrum-Icon"
|
||||||
focusable="false"
|
style="color:#000000;"
|
||||||
>
|
focusable="false"
|
||||||
<use xlink:href="#spectrum-icon-18-Reuse" />
|
>
|
||||||
</svg>
|
<use xlink:href="#spectrum-icon-18-Reuse" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
<div class="iconAlign">
|
<div class="iconAlign">
|
||||||
<Detail size="S">Looping</Detail>
|
<p class="label">Looping</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -145,7 +147,7 @@
|
||||||
<div style="margin-left: 10px;" on:click={() => {}}>
|
<div style="margin-left: 10px;" on:click={() => {}}>
|
||||||
<Icon
|
<Icon
|
||||||
hoverable
|
hoverable
|
||||||
name={showLooping ? "ChevronDown" : "ChevronRight"}
|
name={showLooping ? "ChevronRight" : "ChevronDown"}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -254,6 +256,9 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
.label {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
.splitHeader {
|
.splitHeader {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
@ -274,7 +279,16 @@
|
||||||
.blockSection {
|
.blockSection {
|
||||||
padding: var(--spacing-xl);
|
padding: var(--spacing-xl);
|
||||||
}
|
}
|
||||||
|
.icon-background-loop {
|
||||||
|
background-color: #6afdef;
|
||||||
|
padding: 0;
|
||||||
|
border-radius: 8px;
|
||||||
|
min-height: 32px;
|
||||||
|
min-width: 32px;
|
||||||
|
display: inline-flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
.separator {
|
.separator {
|
||||||
width: 1px;
|
width: 1px;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
|
|
Loading…
Reference in New Issue