Skip to content

Instantly share code, notes, and snippets.

@vadamk
Last active October 10, 2018 13:52
Show Gist options
  • Save vadamk/3539aab6e98955a275d6dcb8340f6cc8 to your computer and use it in GitHub Desktop.
Save vadamk/3539aab6e98955a275d6dcb8340f6cc8 to your computer and use it in GitHub Desktop.
<div
class="toggle-button"
[ngClass]="{'toggle-button_on': innerValue}"
(click)="toggle()">
<div class="toggle-button__circle"></div>
</div>
.toggle-button {
width: 47px;
height: 18px;
border-radius: 9px;
border: solid 1px #d2dced;
background-color: #f2f2f2;
outline: none;
cursor: pointer;
.toggle-button__circle {
width: 12px;
height: 12px;
border-radius: 50%;
border: solid 1px #d2dced;
background-color: #d2dced;
margin: 2px;
transition: 0.3s;
}
&.toggle-button_on .toggle-button__circle {
transform: translateX(29px);
transition: 0.3s;
border: solid 1px #29adc1;
background-color: #29adc1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment