egil / bootstrap.net

Bootstrap.NET is a strongly typed version of Bootstrap implemented in Razor Components, with a nice Bootstrap-like syntax for specifying options on components. On top of that, you get compile-time errors if you try to assign invalid options to components.
MIT License
7 stars 0 forks source link

Naming #2

Open HybridSolutions opened 4 years ago

HybridSolutions commented 4 years ago

Hi great effort! Will be watching this!

I have some doubts about the property naming choices. using different names will force to learn another Bootstrap instead of applying regular Bootstrap conventions. For instance, why this option?

<div class="row align-items-start"></div> | <Row VerticalAlign="start"></Row>

and not this one instead?

<div class="row align-items-start"></div> | <Row AlignItems="start"></Row>

Just my 5 cents ;)

egil commented 4 years ago

Hey, thanks for popping in, and thanks for the suggestion.

This project is currently very inactive. I've been busy with https://github.com/egil/bunit, which I hope I can get out in a stable release soon, so I can get back to this project.