农经大屏
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

layout.scss 224 B

3 hafta önce
3 hafta önce
3 hafta önce
3 hafta önce
123456789101112131415161718192021
  1. .row {
  2. display: flex;
  3. }
  4. .col {
  5. display: flex;
  6. flex-direction: column;
  7. }
  8. .space_between {
  9. justify-content: space-between;
  10. }
  11. .flex_1 {
  12. flex: 1;
  13. }
  14. .align_item_center {
  15. align-items: center;
  16. }