_app-common.scss 870 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. @import '@nativescript/theme/core';
  2. @import '@nativescript/theme/default';
  3. // Place any CSS rules you want to apply on both iOS and Android here.
  4. // This is where the vast majority of your CSS code goes.
  5. // Font icon class
  6. .fab {
  7. font-family: 'Font Awesome 5 Brands', 'fa-brands-400';
  8. font-weight: 400;
  9. }
  10. .fas {
  11. font-family: 'Font Awesome 5 Free', 'fa-solid-900';
  12. font-weight: 900;
  13. }
  14. .far {
  15. font-family: 'Font Awesome 5 Free', 'fa-regular-400';
  16. font-weight: 400;
  17. }
  18. // Custom tabstrip item class
  19. .navigation__item {
  20. &:active,
  21. &:active Label {
  22. @include colorize($color: complementary);
  23. }
  24. }
  25. // Common page class
  26. .page__content {
  27. &-icon,
  28. &-placeholder {
  29. color: const(grey);
  30. font-size: 20;
  31. vertical-align: center;
  32. horizontal-align: center;
  33. }
  34. &-icon {
  35. font-size: 72;
  36. vertical-align: top;
  37. margin-top: 20%;
  38. }
  39. }