Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Commit

Permalink
Center the arrow
Browse files Browse the repository at this point in the history
  • Loading branch information
Blakko committed Mar 21, 2018
1 parent be0fcbe commit d7129c3
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
>

<div ng-if="node.type === 'BUTTON'"
ng-click="node.button.click()">
ng-click="node.button.click()"
class="siren-entity-root">
<div class="siren-entity-icon {{node.icon}}" ng-if="node.icon"/>
<div class="siren-entity-label">
{{ getButtonLabel(node.button, false) }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
}

.siren-entity-label {
display: inline-block;
padding-right: 16px;
}

.siren-type-button {
Expand All @@ -73,9 +73,22 @@
font-size: 14px;
}

.siren-entity-root {
position: relative;
width: 100%;
}

.siren-entity-go {
display: inline-block;
float: right;
.fa {
padding-bottom: 14px;
height: 50%;
margin: auto;
position: absolute;
top: 0;
right: 0;
bottom: 0;
right: 0;
}
}

.siren-entity-sub-switch {
Expand Down

0 comments on commit d7129c3

Please sign in to comment.