Card ColumnSize gone?
#4741
-
Hello, I'm currently updating my project references and therefore coming from Blazorise 1.1.6 to 1.2.2 the following sizing doesn't work:
It seems like doesn't have a ColumnSize anymore. How can I size a Card? |
Beta Was this translation helpful? Give feedback.
Answered by
stsrki
Apr 18, 2023
Replies: 1 comment 3 replies
-
We made some changes to the columns, and one of the changes was that Card ColumnSize API had to be removed. You can try one of the following.
<Row>
<Column ColumnSize="ColumnSize.Is6">
<Card>...</Card>
</Column>
</Row>
<Card Class="col-6">
...
</Card> |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
🤔I guess if you want to leave CardDeck you will need to go with the second option,
<Card Class="col-6">
.