📦 EqualifyEverything / equalify

📄 InvitesTable.module.scss · 21 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21/*
  Basic layout for invites table container.
  Add more styling as needed to match the design system.
*/
.InvitesTable {
  display: flex;
  flex-direction: column;
  gap: 12px;
  table {
    display:table !important;
    min-height: auto !important;
  }
  th:last-child,
  td:last-child {
    text-align: right;
    button {
      float:right;
    }
  }
}