app.scss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. // http://ionicframework.com/docs/theming/
  2. // App Global Sass
  3. // --------------------------------------------------
  4. // Put style rules here that you want to apply globally. These
  5. // styles are for the entire app and not just one component.
  6. // Additionally, this file can be also used as an entry point
  7. // to import other Sass files to be included in the output CSS.
  8. //
  9. // Shared Sass variables, which can be used to adjust Ionic's
  10. // default Sass variables, belong in "theme/variables.scss".
  11. //
  12. // To declare rules for a specific mode, create a child rule
  13. // for the .md, .ios, or .wp mode classes. The mode class is
  14. // automatically applied to the <body> element in the app.
  15. .icon.icon-verified {
  16. color: #1da1f2;
  17. }
  18. #sideNav {
  19. .user-info {
  20. .user-banner {
  21. position: relative;
  22. height: 140px;
  23. margin-bottom: 20px;
  24. .svg-triangle {
  25. position: absolute;
  26. bottom: 0;
  27. }
  28. .user-avatar {
  29. position: absolute;
  30. bottom: -10px;
  31. left: 15px;
  32. border-radius: 50%;
  33. width: 90px;
  34. }
  35. }
  36. .user-info {
  37. padding: 0 15px;
  38. font-size: 15px;
  39. font-weight: 500;
  40. margin-bottom: 10px;
  41. .handle {
  42. color: #ababab;
  43. font-weight: 300;
  44. font-size: 11px;
  45. }
  46. }
  47. }
  48. .label-md {
  49. margin-left: 8px;
  50. display: flex;
  51. align-items: center;
  52. }
  53. .item-inner {
  54. padding-left: 8px;
  55. }
  56. .ion-icon {
  57. line-height: 1;
  58. }
  59. }