forked from bidyut90/angulardocker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
classtocss_global.css
22 lines (22 loc) · 1 KB
/
classtocss_global.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
* classToCSS插件自动生成的全局样式,任何手动修改都会被覆盖
* 需要手动引入到全局生效的位置,如index.html
*/
.mid-between { justify-content: space-between; }
.mid-around { justify-content: space-around; }
.mid-evenly { justify-content: space-evenly; }
.mb-2 { margin-bottom: 2px; }
.mb-4 { margin-bottom: 4px; }
.m-1 { margin: 1px; }
.p-4 { padding: 4px; }
.pb-0 { padding-bottom: 0px; }
.p-3 { padding: 3px; }
.text-center { text-align: center; }
/* apply result */
.app-reset { padding: 0px; margin: 0px; box-sizing: content-box; }
.mid { display: flex; align-items: center; }
.center { display: flex; justify-content: center; }
.mid-center { display: flex; justify-content: center; align-items: center; }
.mid-between { display: flex; justify-content: space-between; align-items: center; }
.mid-around { display: flex; justify-content: space-around; align-items: center; }
.mid-evenly { display: flex; justify-content: space-evenly; align-items: center; }