You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_filmstrip_toolbar.scss 589B

12345678910111213141516171819202122232425262728293031
  1. .filmstrip__toolbar {
  2. @include flex();
  3. flex-direction: column-reverse;
  4. flex-wrap: nowrap;
  5. position: relative;
  6. width: $filmstripToggleButtonWidth;
  7. button {
  8. font-size: 14px;
  9. line-height: 1.2;
  10. text-align: center;
  11. background: transparent;
  12. opacity: 0.7;
  13. height: auto;
  14. width: 100%;
  15. padding: 0;
  16. margin: 0;
  17. border: none;
  18. outline: none;
  19. -webkit-appearance: none;
  20. &:hover {
  21. opacity: 1;
  22. }
  23. i {
  24. cursor: pointer;
  25. }
  26. }
  27. }