styles.scss 473 Bytes
Newer Older
Trần Anh Phú's avatar
Trần Anh Phú committed
1 2 3 4 5 6
//tailwind
@tailwind base;
@tailwind components;
@tailwind utilities;
@import "custom/tailwind";
@import "custom/ant";
vtduong0912's avatar
vtduong0912 committed
7
@import "ng-zorro-antd/ng-zorro-antd.min.css";
Trần Anh Phú's avatar
Trần Anh Phú committed
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

@layer base {
  :root {
    //default
    --color-primary: 153 20 47;
    --color-secondary: 138 21 44;
    --color-paper: 0 0 0;
  }
}

html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Roboto, "Helvetica Neue", sans-serif;
}
vtduong0912's avatar
vtduong0912 committed
26 27 28
.ant-table-pagination {
  justify-content: center !important;
}