🚚 Remove 'pt' prefix for clarity and decoupling

This commit is contained in:
Manuel Cillero 2024-03-02 09:16:30 +01:00
parent e7744cbb93
commit 1dfc789172
24 changed files with 729 additions and 734 deletions

View file

@ -35,7 +35,7 @@ impl ComponentTrait for Item {
fn setup_before_prepare(&mut self, _cx: &mut Context) {
self.prepend_classes(
[
"pt-flex__item".to_owned(),
"flex-item__container".to_owned(),
self.grow().to_string(),
self.shrink().to_string(),
self.size().to_string(),
@ -53,7 +53,7 @@ impl ComponentTrait for Item {
};
PrepareMarkup::With(html! {
div id=[self.id()] class=[self.classes().get()] style=[order] {
div class="inner" {
div class="flex-item__inner" {
(self.components().render(cx))
}
}