Compare commits

...

3 commits

Author SHA1 Message Date
e681d7be23 bump version to: 1.0.2-SNAPSHOT 2024-05-31 11:06:51 +02:00
e14c07204a release: 1.0.1 2024-05-31 11:06:51 +02:00
979f6a3a80 Fix word wrap in chrome 2024-05-31 11:05:54 +02:00
4 changed files with 22 additions and 12 deletions

View file

@ -9,7 +9,7 @@ name = 'dda-masto-embed'
MODULE = 'not-used'
PROJECT_ROOT_PATH = '.'
version = "1.0.1-dev"
version = "1.0.2-dev"
@init
def initialize(project):

View file

@ -1,7 +1,7 @@
{
"name": "dda-masto-embed",
"author": "meissa GmbH",
"version": "1.0.1-SNAPSHOT",
"version": "1.0.2-SNAPSHOT",
"homepage": "https://github.com/DomainDrivenArchitecture/dda-masto-embed",
"repository": "https://github.com/DomainDrivenArchitecture/dda-masto-embed",
"license": "Apache-2.0",

View file

@ -8,7 +8,10 @@
grid: ". post ." / auto auto auto;
font-size: calc(clamp(0.8rem, 19200.75rem - 40000vw, 1.0rem) + max(0.75rem, 0.5rem + 0.5208333vw) - 0.75rem);
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
.mastodon-post {
grid-area: post;
justify-self: center;
@ -119,9 +122,10 @@
.mastodon-post-link-info {
grid-area: info;
grid:
"." "link-title" "."
"." "link-description" "."
"." "link-url" "." / auto auto auto;
"link-title"
"link-description"
"link-url"
/ auto;
padding: var(--small);
.mastodon-post-link-title {
@ -131,8 +135,9 @@
}
.mastodon-post-link-description {
color: #383838;
grid-area: link-description;
color: #383838;
padding-bottom: var(--medium);
}
.mastodon-post-link-url {

View file

@ -8,7 +8,10 @@
grid: ". post ." / auto auto auto;
font-size: calc(clamp(0.8rem, 19200.75rem - 40000vw, 1.0rem) + max(0.75rem, 0.5rem + 0.5208333vw) - 0.75rem);
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
.mastodon-post {
grid-area: post;
justify-self: center;
@ -119,9 +122,10 @@
.mastodon-post-link-info {
grid-area: info;
grid:
"." "link-title" "."
"." "link-description" "."
"." "link-url" "." / auto auto auto;
"link-title"
"link-description"
"link-url"
/ auto;
padding: var(--small);
.mastodon-post-link-title {
@ -131,8 +135,9 @@
}
.mastodon-post-link-description {
color: #383838;
grid-area: link-description;
color: #383838;
padding-bottom: var(--medium);
}
.mastodon-post-link-url {