Fix width issue for images in Floorp and IceCat
All checks were successful
continuous-integration/drone Build is passing
All checks were successful
continuous-integration/drone Build is passing
This commit is contained in:
parent
2271aae4be
commit
07ebd6d06a
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ import {CheckCircleSolid, XmarkCircleSolid} from 'iconoir-react'
|
||||||
|
|
||||||
<div class="service">
|
<div class="service">
|
||||||
<div class="service-icon">
|
<div class="service-icon">
|
||||||
<img src={Icon}/>
|
<img width="92" src={Icon}/>
|
||||||
{
|
{
|
||||||
()=> {
|
()=> {
|
||||||
if (Status === "online") {
|
if (Status === "online") {
|
||||||
|
|
|
@ -24,7 +24,7 @@ export const prerender = true;
|
||||||
<Default MobileTitle="Blog" NoSubHeader>
|
<Default MobileTitle="Blog" NoSubHeader>
|
||||||
<slot slot="body">
|
<slot slot="body">
|
||||||
<div class="blog-post">
|
<div class="blog-post">
|
||||||
<img class="blog-banner" src={post.data.image} />
|
<img width="100%" class="blog-banner" src={post.data.image} />
|
||||||
<h1>{post.data.title}</h1>
|
<h1>{post.data.title}</h1>
|
||||||
<p id="date">
|
<p id="date">
|
||||||
<Calendar />
|
<Calendar />
|
||||||
|
|
Loading…
Reference in a new issue