FIX;Smaller main title for mobile view
This commit is contained in:
parent
ea6c4c5bea
commit
2903517235
4 changed files with 23 additions and 2 deletions
BIN
public/favicon.ico
Executable file → Normal file
BIN
public/favicon.ico
Executable file → Normal file
Binary file not shown.
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 9.5 KiB |
|
@ -6,10 +6,14 @@ import Services from "../components/Services";
|
|||
import Contact from "../components/Contact";
|
||||
import FullStory from "../components/FullStory";
|
||||
import { NextSeo } from "next-seo";
|
||||
import Head from "next/head";
|
||||
|
||||
const Home: NextPage = () => {
|
||||
return (
|
||||
<>
|
||||
<Head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
</Head>
|
||||
<NextSeo
|
||||
title="Roman Developer"
|
||||
description="Primárně se zaměřuji na vývoj frontendů webových aplikací. Ale jsem schopný dělat vývoj i backedovžch částí webových aplikací."
|
||||
|
@ -33,7 +37,7 @@ const Home: NextPage = () => {
|
|||
<MyTitle
|
||||
left="Roman"
|
||||
right="Developer"
|
||||
className="text-5xl lg:text-6xl justify-center"
|
||||
className="text-3xl lg:text-6xl justify-center"
|
||||
/>
|
||||
</div>
|
||||
<AboutMe />
|
||||
|
|
14
src/styles/plugins/sketeton.js
Normal file
14
src/styles/plugins/sketeton.js
Normal file
|
@ -0,0 +1,14 @@
|
|||
const title = () => ({
|
||||
".page-main": {
|
||||
".content": {
|
||||
padding: 0,
|
||||
margin: 0,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
module.exports = ({ addComponents, theme }) => {
|
||||
addComponents(title(theme));
|
||||
};
|
||||
|
||||
module.exports.title = title;
|
|
@ -20,5 +20,8 @@ module.exports = {
|
|||
variants: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [plugin(require("./plugins/mytitle"))],
|
||||
plugins: [
|
||||
plugin(require("./plugins/mytitle")),
|
||||
plugin(require("./plugins/sketeton")),
|
||||
],
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue