UNPKG

drip-ui

Version:

Lightweight Mobile UI Components built on Vue

53 lines (43 loc) 883 B
@import './common/var.css'; $drip-swipe-indicator: 6px; .drip-swipe { overflow: hidden; position: relative; user-select: none; &-item { float: left; height: 100%; } &__track { height: 100%; } &__indicators { display: flex; position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%); &--vertical { left: 10px; top: 50%; bottom: auto; flex-direction: column; transform: translateY(-50%); .drip-swipe__indicator:not(:last-child) { margin-bottom: $drip-swipe-indicator; } } } &__indicator { border-radius: 100%; background-color: $gray-dark; width: $drip-swipe-indicator; height: $drip-swipe-indicator; &:not(:last-child) { margin-right: $drip-swipe-indicator; } &--active { background-color: $orange; } } }