about summary refs log tree commit diff
path: root/MatrixUtils.Web/Pages/Rooms/PolicyList2.razor.css
blob: d2247372a5a758d89e4e4ac0010e4bbf585d1073 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
th {
    border-width: 1px;
}

table {
    width: fit-content;
    border-width: 1px;
    vertical-align: middle;
}

.flex-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));*/
    /*// fit based on content max width*/
    grid-template-columns: repeat(auto-fill, minmax(min-content, 1fr));
    
    gap: 10px;
}

.flex-item {
    /*flex: 1 1 30%;*/
    /*margin: 0.25rem;*/
    /*position: relative;*/
    /*display: flex;*/
    /*flex-direction: column;*/
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff1;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .5rem
}