app.scss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. }
  34. }
  35. .user-info {
  36. padding: 0 15px;
  37. font-size: 15px;
  38. font-weight: 500;
  39. margin-bottom: 10px;
  40. .handle {
  41. color: #ababab;
  42. font-weight: 300;
  43. font-size: 11px;
  44. }
  45. }
  46. }
  47. .label-md {
  48. margin-left: 8px;
  49. display: flex;
  50. align-items: center;
  51. }
  52. .item-inner {
  53. padding-left: 8px;
  54. }
  55. .ion-icon {
  56. line-height: 1;
  57. }
  58. }