| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- .f-1{
- flex: 1;
- }
- .usersTable {
- border-radius: 12px;
- overflow: hidden;
- background-color: white;
- @include media-below($bp-xl) {
- overflow-x: auto !important;
- }
- }
- .usersTable .headingRow {
- background-color: $mainBlueLight;
- }
- .usersTable .headingRow th {
- font-weight: 600 !important;
- }
- .usersTable tr {
- border: 1px solid #f4f4f4;
- }
- .usersTable td,
- .usersTable th {
- width: 20% !important;
- height: 60px;
- padding-left: 35px;
- }
- .usersTable > tbody > tr > td:last-of-type{
- display: flex !important;
- flex-direction: row !important;
- // justify-content: space-between;
- align-items: center;
- gap: 9px;
- }
- .inviteBtn {
- font-size: 12px;
- letter-spacing: 1px;
- text-transform: uppercase;
- padding: 18px 70px !important;
- margin-top: 60px;
- }
- .secondaryRow:hover {
- background-color: $mainBlueLight;
- }
- .cvLink {
- text-decoration: underline;
- font-family: "Source Sans Pro";
- font-style: normal;
- font-weight: 400;
- font-size: 14px;
- // line-height: 15px;
- /* identical to box height */
- text-decoration-line: underline;
- /* Main Blue */
- color: #226cb0;
- // display: flex;
- // justify-content: center;
- // align-items: center;
- // text-align: center;
- // padding-left: 35px;
- }
|