you are viewing a single comment's thread
view the rest of the comments
[–] 44 points 2 years ago (2 children)
.users {
  id: int !primary-key;
  name: text;
}

.users::insert {
  id: 1;
  name: "John doe";
}

@query (max: 10) {
  .user {
    display: table;
  }
  .users id {
    display: none;
  }
}
  • source
  • parent
  • hideshow 4 child comments