A number of classes to adjust the size of embeds in Obsidian #2
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
A number of classes to adjust the size of embeds in Obsidian, they can be used through the pipeline syntax. Some examples:
![[note|w-10vw]] - sets the width of the embed to 10% of the viewport width
![[note|w-100px]] - sets the width of the embed to 100 pixels
![[note|h-10vh]] - sets the height of the embed to 10% of the viewport height
![[note|h-100px]] - sets the height of the embed to 100 pixels
They can be combined using spaces, for example:
![[note|w-10vw h-10vh]]
![[note|w-100px h-100px]]
![[note|w-100px h-10vh]]
![[note|w-10vw h-100px]]
The following classes are available:
.h-100 .. h-2990 in steps of 10
.h-1vh .. h-199vh in steps of 1
.w-100 .. w-2990 in steps of 10
.w-1vw .. w-199vw in steps of 1