Skip to content

Commit d4e1853

Browse files
authored
Merge pull request #28 from laravelcm/update-responsive-design
Update responsive design
2 parents 6e7215a + e0b321a commit d4e1853

25 files changed

+203
-127
lines changed

app/Http/Controllers/ArticlesController.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
use App\Models\Article;
66
use App\Policies\ArticlePolicy;
77
use Illuminate\Support\Facades\Auth;
8+
use Illuminate\Support\Facades\Cache;
89

910
class ArticlesController extends Controller
1011
{
@@ -24,6 +25,8 @@ public function show(Article $article)
2425

2526
views($article)->record();
2627

28+
$article = Cache::remember('post-' . $article->id, now()->addDays(2), fn () => $article);
29+
2730
abort_unless(
2831
$article->isPublished() || ($user && $user->hasAnyRole(['admin', 'moderator'])),
2932
404

app/Http/Controllers/ThreadController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class ThreadController extends Controller
1010
{
1111
public function __construct()
1212
{
13-
$this->middleware(['auth', 'verified'], ['only' => ['create']]);
13+
$this->middleware(['auth', 'verified'], ['only' => ['create', 'edit']]);
1414
}
1515

1616
public function index(Request $request)

app/Models/Discussion.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,6 @@ class Discussion extends Model implements ReactableInterface, ReplyInterface, Su
6464
'author',
6565
];
6666

67-
/**
68-
* The relationship counts that should be eager loaded on every query.
69-
*
70-
* @var array
71-
*/
72-
protected $withCount = [
73-
'replies',
74-
];
75-
7667
/**
7768
* The accessors to append to the model's array form.
7869
*

app/View/Composers/ChannelsComposer.php

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace App\View\Composers;
44

55
use App\Models\Channel;
6+
use Illuminate\Support\Facades\Cache;
67
use Illuminate\View\View;
78

89
class ChannelsComposer
@@ -11,9 +12,11 @@ public function compose(View $view)
1112
{
1213
$view->with(
1314
'channels',
14-
Channel::with('items')
15-
->whereNull('parent_id')
16-
->get()
15+
Cache::remember(
16+
'channels',
17+
now()->addDay(),
18+
fn () => Channel::with('items')->whereNull('parent_id')->get()
19+
)
1720
);
1821
}
1922
}

public/css/app.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/js/app.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/mix-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"/js/app.js": "/js/app.js?id=7d557689434ab2f122d8",
3-
"/css/app.css": "/css/app.css?id=fdf410c5697f754950ed"
2+
"/js/app.js": "/js/app.js?id=9abd09e80a5426001802",
3+
"/css/app.css": "/css/app.css?id=2d48602df6b458ee81ad"
44
}

resources/js/components/Comments.jsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -358,15 +358,15 @@ const Comment = memo(({ comment, editing, onEdit, onUpdate, onDelete, onReply, o
358358
/>
359359
</div>
360360
<div className="flex-1">
361-
<div className="flex items-center text-sm space-x-2">
361+
<div className="text-sm sm:flex sm:items-center sm:space-x-2">
362362
<a href={`/user/${comment.author.username}`} className="font-medium text-skin-primary font-sans hover:text-skin-primary-hover">
363363
{comment.author.name}
364364
</a>
365365
<span className="text-skin-base font-normal"><time-ago time={comment.created_at} /></span>
366366
{canEdit && (
367-
<div className="flex">
368-
<span className="text-skin-base font-medium">·</span>
369-
<div className="pl-2 flex items-center divide-x divide-skin-base">
367+
<div className="mt-1 flex sm:mt-0">
368+
<span className="hidden sm:inline-block text-skin-base font-medium">·</span>
369+
<div className="sm:pl-2 flex items-center divide-x divide-skin-base">
370370
<button type="button" onClick={handleEdit} className="pr-2 text-sm leading-5 font-sans text-skin-base focus:outline-none hover:underline">Éditer</button>
371371
<button type="button" onClick={handleDelete} className="pl-2 text-sm leading-5 font-sans text-red-500 focus:outline-none hover:underline">Supprimer</button>
372372
</div>
@@ -452,13 +452,13 @@ function CommentForm ({ onSubmit, parent, isRoot = false, onCancel = null }) {
452452
rows={4}
453453
required
454454
/>
455-
<div className="mt-6 flex items-center justify-between space-x-4">
455+
<div className="mt-4 sm:flex sm:items-center sm:justify-between sm:space-x-4">
456456
{isRoot && (
457457
<p className="text-sm text-skin-base max-w-xl font-normal">
458458
Veuillez vous assurer d'avoir lu nos <a href="/rules" className="font-medium text-skin-primary hover:text-skin-primary-hover">règles de conduite</a> avant de répondre à ce fil de conversation.
459459
</p>
460460
)}
461-
<div className="flex items-center justify-end space-x-3">
461+
<div className="mt-3 flex items-center justify-end space-x-3 sm:mt-0">
462462
{onCancel && <DefaultButton type="reset" onClick={handleCancel}>Annuler</DefaultButton>}
463463
<PrimaryButton type="submit" loading={loading}>
464464
Commenter

resources/views/articles/show.blade.php

Lines changed: 88 additions & 37 deletions
Large diffs are not rendered by default.

resources/views/components/articles/filter.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class="{{ $selectedSortBy === 'trending' ? 'bg-skin-link text-skin-inverted': 't
5252
type="button"
5353
wire:click="sortBy('recent')"
5454
aria-current="{{ $selectedSortBy === 'recent' ? 'page' : 'false' }}"
55-
class="w-full {{ $selectedSortBy === 'recent' ? 'text-skin-inverted': 'text-skin-base hover:text-skin-inverted' }} rounded-l-lg group relative min-w-0 flex-1 overflow-hidden bg-skin-card py-4 px-6 text-sm font-medium text-center hover:bg-skin-card-muted focus:z-10"
55+
class="w-full {{ $selectedSortBy === 'recent' ? 'text-skin-inverted': 'text-skin-base hover:text-skin-inverted' }} rounded-l-lg group relative min-w-0 flex-1 overflow-hidden bg-skin-card p-4 sm:px-6 text-sm font-medium text-center hover:bg-skin-card-muted focus:z-10"
5656
>
5757
<span>Récents</span>
5858
<span aria-hidden="true" class="{{ $selectedSortBy === 'recent' ? 'bg-skin-primary': 'bg-transparent' }} absolute inset-x-0 bottom-0 h-0.5"></span>
@@ -62,7 +62,7 @@ class="w-full {{ $selectedSortBy === 'recent' ? 'text-skin-inverted': 'text-skin
6262
type="button"
6363
wire:click="sortBy('popular')"
6464
aria-current="{{ $selectedSortBy === 'popular' ? 'page' : 'false' }}"
65-
class="w-full {{ $selectedSortBy === 'popular' ? 'text-skin-inverted': 'text-skin-base hover:text-skin-inverted' }} group relative min-w-0 flex-1 overflow-hidden bg-skin-card py-4 px-6 text-sm font-medium text-center hover:bg-skin-card-muted focus:z-10"
65+
class="w-full {{ $selectedSortBy === 'popular' ? 'text-skin-inverted': 'text-skin-base hover:text-skin-inverted' }} group relative min-w-0 flex-1 overflow-hidden bg-skin-card p-4 sm:px-6 text-sm font-medium text-center hover:bg-skin-card-muted focus:z-10"
6666
>
6767
<span>Populaire</span>
6868
<span aria-hidden="true" class="{{ $selectedSortBy === 'popular' ? 'bg-skin-primary': 'bg-transparent' }} absolute inset-x-0 bottom-0 h-0.5"></span>
@@ -72,7 +72,7 @@ class="w-full {{ $selectedSortBy === 'popular' ? 'text-skin-inverted': 'text-ski
7272
type="button"
7373
wire:click="sortBy('trending')"
7474
aria-current="{{ $selectedSortBy === 'trending' ? 'page' : 'false' }}"
75-
class="w-full {{ $selectedSortBy === 'trending' ? 'text-skin-inverted': 'text-skin-base hover:text-skin-inverted' }} rounded-r-lg group relative min-w-0 flex-1 overflow-hidden bg-skin-card py-4 px-6 text-sm font-medium text-center hover:bg-skin-card-muted focus:z-10"
75+
class="w-full {{ $selectedSortBy === 'trending' ? 'text-skin-inverted': 'text-skin-base hover:text-skin-inverted' }} rounded-r-lg group relative min-w-0 flex-1 overflow-hidden bg-skin-card p-4 sm:px-6 text-sm font-medium text-center hover:bg-skin-card-muted focus:z-10"
7676
>
7777
<span>Tendance</span>
7878
<span aria-hidden="true" class="{{ $selectedSortBy === 'trending' ? 'bg-skin-primary': 'bg-transparent' }} absolute inset-x-0 bottom-0 h-0.5"></span>

resources/views/components/discussions/overview.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@
2020
<p class="mt-1 text-sm font-normal text-skin-base leading-5">
2121
{!! $discussion->excerpt(175) !!}
2222
</p>
23-
<div class="mt-3 flex justify-between">
23+
<div class="mt-3 sm:flex sm:justify-between">
2424
<div class="flex items-center text-sm font-sans text-skin-muted">
2525
<a class="flex-shrink-0" href="/user/{{ $discussion->author->username }}">
2626
<img class="h-6 w-6 rounded-full" src="{{ $discussion->author->profile_photo_url }}" alt="{{ $discussion->author->name }}">
2727
</a>
2828
<span class="ml-2 pr-1">Posté par</span>
2929
<div class="flex items-center space-x-1">
30-
<a href="/user/{{ $discussion->author->username }}" class="text-skin-inverted hover:underline">{{ $discussion->author->name }}</a>
30+
<a href="{{ route('profile', $discussion->author->username) }}" class="text-skin-inverted hover:underline">{{ $discussion->author->name }}</a>
3131
<span aria-hidden="true">&middot;</span>
3232
<time-ago time="{{ $discussion->created_at->getTimestamp() }}"/>
3333
</div>
3434
</div>
35-
<div class="flex items-center space-x-4">
35+
<div class="hidden sm:flex sm:items-center space-x-3">
3636
<livewire:reactions
3737
wire:key="{{ $discussion->id }}"
3838
:model="$discussion"
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<div class="relative flex items-center h-full px-4 font-medium text-skin-base space-x-4">
2-
<button x-data="{}" title="Codepen" type="button" class="text-skin-base hover:text-skin-inverted-muted cursor-pointer focus:outline-none" @click="$dispatch('editor-control-clicked', 'codepen')">
2+
<button x-data title="Codepen" type="button" class="text-skin-base hover:text-skin-inverted-muted cursor-pointer focus:outline-none" @click="$dispatch('editor-control-clicked', 'codepen')">
33
<svg class="text-skin-menu fill-current w-5 h-5" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
44
<g fill="none" fill-rule="evenodd">
55
<circle fill="#374151" cx="100" cy="100" r="100"/>
66
<path d="M42.275 122.561l54.845 36.57c1.87 1.15 3.87 1.165 5.76 0l54.845-36.57c1.405-.935 2.275-2.61 2.275-4.285v-36.56c0-1.675-.87-3.35-2.275-4.285L102.88 40.866c-1.87-1.15-3.87-1.16-5.76 0L42.275 77.431C40.87 78.366 40 80.041 40 81.716v36.56c0 1.675.87 3.35 2.275 4.285zm52.57 22.64l-40.38-26.92 18.015-12.055 22.365 14.935v24.04zm10.31 0v-24.04l22.365-14.935 18.015 12.055-40.38 26.92zm44.535-36.57l-12.925-8.635 12.925-8.64v17.275zm-44.535-53.835l40.38 26.92-18.015 12.055-22.365-14.935v-24.04zM100 87.806l18.215 12.19L100 112.186l-18.215-12.19L100 87.806zm-5.155-33.01v24.04L72.48 93.771 54.465 81.716l40.38-26.92zm-44.53 36.57v-.005l12.925 8.64-12.925 8.64V91.366z" fill="#FFF" fill-rule="nonzero"/>
77
</g>
88
</svg>
99
</button>
10-
<button x-data="{}" title="Code sample" type="button" class="text-skin-base hover:text-skin-inverted-muted cursor-pointer focus:outline-none" @click="$dispatch('editor-control-clicked', 'code')">
10+
<button x-data title="Code sample" type="button" class="text-skin-base hover:text-skin-inverted-muted cursor-pointer focus:outline-none" @click="$dispatch('editor-control-clicked', 'code')">
1111
<x-heroicon-o-code class="w-5 h-5" />
1212
</button>
13-
<button x-data="{}" title="Link" type="button" class="text-skin-base hover:text-skin-inverted-muted cursor-pointer focus:outline-none" @click="$dispatch('editor-control-clicked', 'link')">
13+
<button x-data title="Link" type="button" class="text-skin-base hover:text-skin-inverted-muted cursor-pointer focus:outline-none" @click="$dispatch('editor-control-clicked', 'link')">
1414
<x-heroicon-o-link class="w-5 h-5" />
1515
</button>
16-
<button x-data="{}" title="Image" type="button" class="text-skin-base hover:text-skin-inverted-muted cursor-pointer focus:outline-none" @click="$dispatch('editor-control-clicked', 'image')">
16+
<button x-data title="Image" type="button" class="text-skin-base hover:text-skin-inverted-muted cursor-pointer focus:outline-none" @click="$dispatch('editor-control-clicked', 'image')">
1717
<x-heroicon-o-photograph class="w-5 h-5" />
1818
</button>
1919
</div>

resources/views/components/forum/filters.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<a
33
href="{{ url(request()->url() . '?sortBy=recent') }}"
44
aria-current="{{ $filter === 'recent' ? 'page' : 'false' }}"
5-
class="w-full {{ $filter === 'recent' ? 'text-skin-inverted': 'text-skin-base hover:text-skin-inverted' }} rounded-l-lg group relative min-w-0 flex-1 overflow-hidden bg-skin-card py-4 px-6 text-sm font-medium text-center hover:bg-skin-card-muted focus:z-10"
5+
class="w-full {{ $filter === 'recent' ? 'text-skin-inverted': 'text-skin-base hover:text-skin-inverted' }} rounded-l-lg group relative min-w-0 flex-1 overflow-hidden bg-skin-card p-4 sm:px-6 text-sm font-medium text-center hover:bg-skin-card-muted focus:z-10"
66
>
77
<span>Récent</span>
88
<span aria-hidden="true" class="{{ $filter === 'recent' ? 'bg-skin-primary': 'bg-transparent' }} absolute inset-x-0 bottom-0 h-0.5"></span>
@@ -11,7 +11,7 @@ class="w-full {{ $filter === 'recent' ? 'text-skin-inverted': 'text-skin-base ho
1111
<a
1212
href="{{ url(request()->url() . '?sortBy=resolved') }}"
1313
aria-current="{{ $filter === 'resolved' ? 'page' : 'false' }}"
14-
class="w-full {{ $filter === 'resolved' ? 'text-skin-inverted': 'text-skin-base hover:text-skin-inverted' }} group relative min-w-0 flex-1 overflow-hidden bg-skin-card py-4 px-6 text-sm font-medium text-center hover:bg-skin-card-muted focus:z-10"
14+
class="w-full {{ $filter === 'resolved' ? 'text-skin-inverted': 'text-skin-base hover:text-skin-inverted' }} group relative min-w-0 flex-1 overflow-hidden bg-skin-card p-4 sm:px-6 text-sm font-medium text-center hover:bg-skin-card-muted focus:z-10"
1515
>
1616
<span>Résolu</span>
1717
<span aria-hidden="true" class="{{ $filter === 'resolved' ? 'bg-skin-primary': 'bg-transparent' }} absolute inset-x-0 bottom-0 h-0.5"></span>
@@ -20,7 +20,7 @@ class="w-full {{ $filter === 'resolved' ? 'text-skin-inverted': 'text-skin-base
2020
<a
2121
href="{{ url(request()->url() . '?sortBy=unresolved') }}"
2222
aria-current="{{ $filter === 'unresolved' ? 'page' : 'false' }}"
23-
class="w-full {{ $filter === 'unresolved' ? 'text-skin-inverted': 'text-skin-base hover:text-skin-inverted' }} rounded-r-lg group relative min-w-0 flex-1 overflow-hidden bg-skin-card py-4 px-6 text-sm font-medium text-center hover:bg-skin-card-muted focus:z-10"
23+
class="w-full {{ $filter === 'unresolved' ? 'text-skin-inverted': 'text-skin-base hover:text-skin-inverted' }} rounded-r-lg group relative min-w-0 flex-1 overflow-hidden bg-skin-card p-4 sm:px-6 text-sm font-medium text-center hover:bg-skin-card-muted focus:z-10"
2424
>
2525
<span>Non résolu</span>
2626
<span aria-hidden="true" class="{{ $filter === 'unresolved' ? 'bg-skin-primary': 'bg-transparent' }} absolute inset-x-0 bottom-0 h-0.5"></span>

resources/views/components/forum/thread-overview.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
</div>
4242
<div class="mt-6 flex justify-between space-x-8">
4343
<div class="flex items-center space-x-4">
44-
<livewire:reactions :model="$thread" :with-place-holder="false"/>
44+
<livewire:reactions :model="$thread" :with-place-holder="false" :with-background="false"/>
4545
<p class="inline-flex text-sm space-x-2 text-skin-base">
4646
<x-heroicon-o-chat-alt class="h-5 w-5" />
4747
<span class="font-normal text-skin-inverted-muted">{{ count($thread->replies) }}</span>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<svg {{ $attributes }} fill="currentColor" viewBox="0 0 210 27" xmlns="http://www.w3.org/2000/svg">
2+
<path d="M11.356 26.187H0V.767h11.356c1.758 0 3.425.317 4.957.994A13.88 13.88 0 0 1 20.37 4.47c1.172 1.129 2.073 2.483 2.749 4.063.676 1.536.991 3.206.991 4.922 0 1.76-.315 3.386-.991 4.966-.676 1.535-1.577 2.89-2.749 4.064a13.881 13.881 0 0 1-4.056 2.709c-1.532.677-3.2.993-4.957.993Zm-.81-19.189H6.67v13.049h3.875a7.03 7.03 0 0 0 2.569-.497c.81-.316 1.487-.813 2.073-1.4.586-.586 1.036-1.264 1.397-2.076.315-.813.495-1.626.495-2.529s-.18-1.76-.495-2.528c-.36-.813-.811-1.49-1.397-2.077s-1.262-1.039-2.073-1.4c-.766-.361-1.623-.542-2.569-.542ZM38.936.993h-5.994L23.57 26.097h7.165L35.96 9.933l5.183 16.164h7.165L38.936.993ZM67.1 26.187l-4.415-7.856h-4.282l.046 7.856h-6.985V.767h12.708c.63 0 1.216.136 1.847.362.631.226 1.262.542 1.848.903a8.974 8.974 0 0 1 1.622 1.31c.496.496.947.992 1.262 1.49.45.631.766 1.354.992 2.211.225.858.36 1.626.36 2.393a7.308 7.308 0 0 1-.901 3.522c-.586 1.084-1.397 1.987-2.434 2.754l5.949 10.475H67.1Zm-4.956-19.73h-3.966v5.463h3.966c.405 0 .766-.09 1.126-.226.36-.136.676-.316.902-.587.27-.27.45-.542.63-.858a2.733 2.733 0 0 0 0-2.167 2.358 2.358 0 0 0-.63-.858 2.817 2.817 0 0 0-.902-.587c-.36-.09-.72-.18-1.126-.18Zm26.678 6.366 10.05 13.41h-8.248l-6.94-8.534v8.533h-6.94V.812h6.94v8.534l6.94-8.533h8.563l-10.365 12.01ZM121.989 27c-1.892 0-3.605-.361-5.227-1.084-1.623-.722-3.02-1.67-4.236-2.934-1.217-1.22-2.163-2.664-2.839-4.29a13.346 13.346 0 0 1-1.037-5.192c0-1.851.361-3.567 1.037-5.192a13.944 13.944 0 0 1 2.839-4.29 13.95 13.95 0 0 1 4.236-2.934C118.384.36 120.142 0 121.989 0c1.713 0 3.335.316 4.912.948a14.5 14.5 0 0 1 4.326 2.71L126 8.307c-1.262-.903-2.614-1.355-3.966-1.355a6.23 6.23 0 0 0-2.568.542c-.766.361-1.442.813-2.028 1.445-.586.632-.992 1.31-1.352 2.122-.316.813-.496 1.625-.496 2.483 0 .903.18 1.761.496 2.529a5.91 5.91 0 0 0 1.352 2.076c.586.587 1.217 1.084 2.028 1.445a5.888 5.888 0 0 0 2.523.542c1.037 0 2.028-.226 2.929-.722a7.853 7.853 0 0 0 2.389-2.032l5.408 4.38c-1.352 1.67-2.93 2.934-4.777 3.837a13.092 13.092 0 0 1-5.949 1.4Zm23.975 0a13.56 13.56 0 0 1-5.273-1.038c-1.622-.678-3.064-1.671-4.281-2.845-1.217-1.219-2.163-2.619-2.884-4.29-.721-1.625-1.082-3.386-1.082-5.237 0-1.85.361-3.612 1.082-5.237.721-1.626 1.667-3.07 2.884-4.29 1.217-1.219 2.659-2.167 4.281-2.89 1.622-.721 3.38-1.083 5.273-1.083 1.847 0 3.605.362 5.227 1.084 1.667.722 3.064 1.67 4.281 2.89 1.217 1.219 2.163 2.618 2.884 4.289.721 1.625 1.082 3.386 1.082 5.237s-.361 3.612-1.082 5.238c-.721 1.625-1.667 3.07-2.884 4.289a13.163 13.163 0 0 1-4.281 2.845A13.499 13.499 0 0 1 145.964 27Zm0-20.408c-.947 0-1.848.18-2.659.587a6.556 6.556 0 0 0-2.118 1.535c-.586.632-1.037 1.355-1.397 2.212-.316.858-.496 1.716-.496 2.664 0 .903.18 1.806.496 2.664.315.858.811 1.58 1.397 2.212.586.633 1.307 1.13 2.118 1.536a6.54 6.54 0 0 0 2.659.587c.946 0 1.847-.181 2.658-.587a6.555 6.555 0 0 0 2.118-1.535c.586-.633 1.037-1.355 1.397-2.213.316-.858.496-1.716.496-2.664 0-.948-.18-1.806-.496-2.664-.315-.857-.811-1.58-1.397-2.212-.586-.632-1.307-1.129-2.118-1.535-.811-.406-1.667-.587-2.658-.587Zm28.12 19.595h-11.357V.767h11.357c1.757 0 3.425.317 4.957.994a13.888 13.888 0 0 1 4.056 2.709c1.171 1.129 2.073 2.483 2.748 4.063.676 1.536.992 3.206.992 4.922 0 1.76-.316 3.386-.992 4.966-.675 1.535-1.577 2.89-2.748 4.064a13.889 13.889 0 0 1-4.056 2.709c-1.532.677-3.2.993-4.957.993Zm-.766-19.189h-3.876v13.049h3.876c.901 0 1.757-.18 2.568-.497.811-.316 1.487-.813 2.073-1.4.586-.586 1.037-1.264 1.397-2.076.361-.813.496-1.626.496-2.529s-.18-1.76-.496-2.528c-.315-.813-.811-1.49-1.397-2.077s-1.262-1.039-2.073-1.4a6.242 6.242 0 0 0-2.568-.542ZM189.811.993v5.915H210V.993h-20.189Zm0 9.392v6.275h19.153v-6.275h-19.153Zm0 9.797v5.915H210v-5.915h-20.189Z"/>
3+
</svg>

0 commit comments

Comments
 (0)