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.

_usersPage.scss 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .f-1{
  2. flex: 1;
  3. }
  4. .usersTable {
  5. border-radius: 12px;
  6. overflow: hidden;
  7. background-color: white;
  8. @include media-below($bp-xl) {
  9. overflow-x: auto !important;
  10. }
  11. }
  12. .usersTable .headingRow {
  13. background-color: $mainBlueLight;
  14. }
  15. .usersTable .headingRow th {
  16. font-weight: 600 !important;
  17. }
  18. .usersTable tr {
  19. border: 1px solid #f4f4f4;
  20. }
  21. .usersTable td,
  22. .usersTable th {
  23. width: 20% !important;
  24. height: 60px;
  25. padding-left: 35px;
  26. }
  27. .usersTable > tbody > tr > td:last-of-type{
  28. display: flex !important;
  29. flex-direction: row !important;
  30. // justify-content: space-between;
  31. align-items: center;
  32. gap: 9px;
  33. }
  34. .inviteBtn {
  35. font-size: 12px;
  36. letter-spacing: 1px;
  37. text-transform: uppercase;
  38. padding: 18px 70px !important;
  39. margin-top: 60px;
  40. }
  41. .secondaryRow:hover {
  42. background-color: $mainBlueLight;
  43. }
  44. .cvLink {
  45. text-decoration: underline;
  46. font-family: "Source Sans Pro";
  47. font-style: normal;
  48. font-weight: 400;
  49. font-size: 14px;
  50. // line-height: 15px;
  51. /* identical to box height */
  52. text-decoration-line: underline;
  53. /* Main Blue */
  54. color: #226cb0;
  55. // display: flex;
  56. // justify-content: center;
  57. // align-items: center;
  58. // text-align: center;
  59. // padding-left: 35px;
  60. }