Skip to main content

Command Palette

Search for a command to run...

Vertically center any content

Published
1 min readView as Markdown

Add the class "ds-vertical-align" to the columns of the row.

.ds-vertical-align { 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
}
23 views