All files / src/components/row Row.css

60% Statements 6/10
66.67% Branches 4/6
50% Functions 1/2
60% Lines 6/10

Press n or j to go to the next uncovered block, b, p or k for the previous block.

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 33 341x   1x 1x     1x   1x 1x                                                
:host {
    box-sizing: border-box;
    Edisplay: flex;
    flex-wrap: wrap;
    align-items: center;
}
 
:host * {
    flex-grow: 1E;
}
 
:host([justify-content='start']) {
    justify-content: start;
}

:host([justify-content='end']) {
    justify-content: end;
}
 
:host([justify-content='center']) {
    justify-content: center;
}

:host([justify-content='space-around']) {
    justify-content: space-around;
}
 
:host([justify-content='space-between']) {
    justify-content: space-between;
}
 
:host([justify-content='space-evenly']) {
    justify-content: space-evenly;
}