Skip to content

Commit 15ee914

Browse files
alterações de estilo e performance
1 parent 1c59dae commit 15ee914

File tree

6 files changed

+6
-112
lines changed

6 files changed

+6
-112
lines changed

public/assets/css/app.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@
9494
color: var(--textColor);
9595
padding: 2px;
9696
margin: 4px 0px 16px 0px;
97-
font-family: "Roboto Mono", monospace;
9897
font-size: 14px;
9998
}
10099

resources/views/components/layout.blade.php

Lines changed: 0 additions & 101 deletions
This file was deleted.

resources/views/editor.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<x-app-layout>
2-
<div class="mx-auto space-y-6 py-4">
2+
<div class="mx-auto space-y-6 py-4 text-stone-600">
33
<div class="grid gap-4 grid-cols-5">
44
@include('content.partials.style-editor')
55
@include('content.partials.write-content')

resources/views/layouts/app.blade.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@
88
<title>{{ config('app.name', 'Markdown Editor') }}</title>
99

1010
<link rel="icon" href="{{ url('assets/css/favicon.ico') }}">
11-
<link rel="stylesheet" href="{{ asset('assets/css/app.css?v1') }}" >
12-
13-
<!-- Fonts -->
14-
<link rel="preconnect" href="https://fonts.bunny.net">
15-
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
11+
<link rel="stylesheet" href="{{ asset('assets/css/app.css?v2') }}" >
1612

1713
<!-- Scripts -->
1814
@vite(['resources/css/app.css', 'resources/js/app.js'])

resources/views/layouts/navigation.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<nav x-data="{ open: false }" class="bg-white border-b border-stone-100 shadow-sm">
22
<!-- Primary Navigation Menu -->
33
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
4-
<div class="flex justify-between items-center h-16">
5-
<span class="text-lg">Edit markdown files and convert them to PDF</span>
4+
<div class="flex justify-between items-center h-16 text-stone-700">
5+
<span class="text-lg font-semibold">Edit markdown files and convert them to PDF</span>
66

77
<a href="https://github.com/bernardoazevedo/markdownEditor" target="_blank">
8-
<img src="{{ asset('assets/images/github.svg') }}" alt="Github Logo" width="24px">
8+
<img src="{{ asset('assets/images/github.svg') }}" alt="Github Logo" width="24px" height="24px">
99
</a>
1010
</div>
1111
</div>

tailwind.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export default {
1212
theme: {
1313
extend: {
1414
fontFamily: {
15-
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
15+
1616
},
1717
},
1818
},

0 commit comments

Comments
 (0)