Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit 2d42abd

Browse files
committed
Fix height for art page 🚀
1 parent f47f191 commit 2d42abd

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Change Log
22
All changes to Chicio coding will be documented in this file.
33

4+
## [5.2.0](https://github.com/chicio/chicio.github.io/releases/tag/v5.2.0)
5+
Release date: 2021-10-30
6+
7+
#### Added
8+
9+
- New art page
10+
411
## [5.1.0](https://github.com/chicio/chicio.github.io/releases/tag/v5.1.0)
512
Release date: 2021-10-29
613

graphql-types.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -256,8 +256,6 @@ export type DirectoryCtimeArgs = {
256256
export type Site = Node & {
257257
buildTime?: Maybe<Scalars['Date']>;
258258
siteMetadata?: Maybe<SiteSiteMetadata>;
259-
port?: Maybe<Scalars['Int']>;
260-
host?: Maybe<Scalars['String']>;
261259
polyfill?: Maybe<Scalars['Boolean']>;
262260
pathPrefix?: Maybe<Scalars['String']>;
263261
id: Scalars['ID'];
@@ -856,8 +854,6 @@ export type QueryAllDirectoryArgs = {
856854
export type QuerySiteArgs = {
857855
buildTime?: Maybe<DateQueryOperatorInput>;
858856
siteMetadata?: Maybe<SiteSiteMetadataFilterInput>;
859-
port?: Maybe<IntQueryOperatorInput>;
860-
host?: Maybe<StringQueryOperatorInput>;
861857
polyfill?: Maybe<BooleanQueryOperatorInput>;
862858
pathPrefix?: Maybe<StringQueryOperatorInput>;
863859
id?: Maybe<StringQueryOperatorInput>;
@@ -2168,8 +2164,6 @@ export type SiteFieldsEnum =
21682164
| 'siteMetadata___contacts___links___medium'
21692165
| 'siteMetadata___contacts___links___devto'
21702166
| 'siteMetadata___contacts___links___instagram'
2171-
| 'port'
2172-
| 'host'
21732167
| 'polyfill'
21742168
| 'pathPrefix'
21752169
| 'id'
@@ -2303,8 +2297,6 @@ export type SiteGroupConnectionGroupArgs = {
23032297
export type SiteFilterInput = {
23042298
buildTime?: Maybe<DateQueryOperatorInput>;
23052299
siteMetadata?: Maybe<SiteSiteMetadataFilterInput>;
2306-
port?: Maybe<IntQueryOperatorInput>;
2307-
host?: Maybe<StringQueryOperatorInput>;
23082300
polyfill?: Maybe<BooleanQueryOperatorInput>;
23092301
pathPrefix?: Maybe<StringQueryOperatorInput>;
23102302
id?: Maybe<StringQueryOperatorInput>;

src/pages/art.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ const BackgroundImage = styled.div`
4343
left: 0;
4444
background: url(${Background});
4545
width: 100%;
46-
height: 100%;
46+
height: 100vh;
47+
min-height: 100vh;
4748
z-index: -300;
4849
`;
4950

0 commit comments

Comments
 (0)