Welcome to mirror list, hosted at ThFree Co, Russian Federation.

columns.scss « shortcodes « sass « assets - github.com/vjeantet/hugo-theme-docport.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b367db685894aab452c59b2a2f8fad336e31fac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
div.columns{
	flex-wrap: wrap;
    display: flex;

	div.column{
		flex: 1 1;
		padding: 0 1em;
	}
	:first-child{
		padding-left: 0px!important;
	}
	:last-child{
		padding-right: 0px!important;
	}
}