jetsai

Results 4 issues of jetsai

* Cookiecutter version: 1.7.2 * Template project url: N/A * Python version: 3.7.7 * Operating System: windows ### Description: I want to provide two database options to choose. ``` {...

```py # models.py assoc_managers_roles = sa.Table( "assoc_managers_roles", Base.metadata, sa.Column( "manager_id", sa.Integer, sa.ForeignKey("managers.id", ondelete="CASCADE"), primary_key=True, ), sa.Column( "role_id", sa.Integer, sa.ForeignKey("roles.id", ondelete="CASCADE"), primary_key=True, ), ) class Manager(Base, TimestampMixin): id = sa.Column(sa.Integer, primary_key=True,...

### Description Master CSS is expected to be the best design system tool for some developers (at least me). And CSS variables play an important role to build tokens and...

enhancement

![image](https://user-images.githubusercontent.com/32839503/213165531-3e57d3b2-1f5d-4cf4-9024-c83d62167251.png) It's easy to create a 2x2 split blocks with split-grid. But speaking of `grid`, it's expected to define gutter with two dimensions. For example, these four blocks are expected...