20.vue 428 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div class="box-20">
  3. <css-grid-common-grid class="one-20"/>
  4. </div>
  5. </template>
  6. <style lang="less">
  7. @or: /;
  8. .box-20 {
  9. padding: 5px;
  10. background-color: white;
  11. border: 2px solid black;
  12. .container {
  13. margin-bottom: 0;
  14. &.one-20 {
  15. grid-template-columns: repeat(3, 100px);
  16. grid-template-rows: repeat(3, 100px);
  17. align-items: start;
  18. }
  19. }
  20. }
  21. </style>