Adjusted grid width
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-05-26 02:33:02 +03:00
parent 6176c1c15a
commit 23532160a4
5 changed files with 29 additions and 15 deletions

View File

@@ -24,7 +24,17 @@
height: 107px;
}
.name {
font-weight: 300;
}
.description {
padding-top: var(--gap-sm);
font: var(--font-sm);
}
@media screen and (max-width: 1464px) {
.Project {
width: calc(50% - var(--gap-lg));
}
}

View File

@@ -19,7 +19,11 @@ export default (props: {project: Project}) => {
href={props.project.link}
target="_blank"
>
<h2>{props.project.name}</h2>
<h2
class={styles.name}
>
{props.project.name}
</h2>
</a>
<div class={styles.description}>
{t(props.project.descriptionSlug)}

View File

@@ -20,18 +20,6 @@ export class Project {
}
export default [
new Project({
name: 'flexpatrol.ru',
preview: flexpatrolPreview,
link: 'https://flexpatrol.ru',
descriptionSlug: 'flexpatrol_desc'
}),
new Project({
name: 'My Games',
preview: gamesPreview,
link: 'https://games.anatolykopyl.ru',
descriptionSlug: 'games_desc'
}),
new Project({
name: 'Warframe Center',
preview: warframePreview,
@@ -56,4 +44,16 @@ export default [
link: 'https://chrome.google.com/webstore/detail/vk-mute/mcnkfnjggkbenehgfelnnkklpkpjeibl',
descriptionSlug: 'vkmute_desc'
}),
new Project({
name: 'flexpatrol.ru',
preview: flexpatrolPreview,
link: 'https://flexpatrol.ru',
descriptionSlug: 'flexpatrol_desc'
}),
new Project({
name: 'My Games',
preview: gamesPreview,
link: 'https://games.anatolykopyl.ru',
descriptionSlug: 'games_desc'
}),
]

View File

@@ -1,7 +1,7 @@
{
"lang": "en",
"my_name": "Anatoly Kopyl",
"tagline": "Fullstack developer with standards",
"tagline": "Fullstack developer",
"flexpatrol_desc": "A landing page for a gaming squad with info on their servers and their status.",
"games_desc": "A page with thumbnails and links to my games.",
"warframe_desc": "A service that monitors prices of items on warframe.market and calculates profitable gaps between them.",

View File

@@ -1,7 +1,7 @@
{
"lang": "ru",
"my_name": "Анатолий Копыл",
"tagline": "Fullstack разработчик со стандартами",
"tagline": "Fullstack разработчик",
"flexpatrol_desc": "Лендинг для сквада геймеров, с информацией об их серверах и их статусе.",
"games_desc": "Страница со ссылками на мои игры.",
"warframe_desc": "Сервис, который считает разницу в цене между позициями на warframe.market.",