Skip to content

Commit

Permalink
Fix header
Browse files Browse the repository at this point in the history
  • Loading branch information
odinuge committed Sep 4, 2018
1 parent 47bcdf2 commit 6492ed5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion components/Frontpage/WelcomeScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import React from 'react';
import { createFragmentContainer, graphql } from 'react-relay';
import { type WelcomeScreen_currentMetaData } from './__generated__/WelcomeScreen_currentMetaData.graphql';
import Countdown from '../Countdown';
import { itdageneBlue } from '../../utils/colors';
import Link from 'next/link';
import Flex, { FlexItem } from 'styled-flex-component';
import styled from 'styled-components';
Expand Down
8 changes: 4 additions & 4 deletions components/Header/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const StyledMenuItem = styled('span')`
const items = [
{ key: 'home', name: 'HJEM', to: '/' },
{ key: 'about-us', name: 'OM itDAGENE', to: '/om-itdagene' },
{ key: 'program', name: 'PROGRAM', to: '/info?side=program' },
{ key: 'program', name: 'PROGRAM', to: '/program' },
{ key: 'joblistings', name: 'JOBBANNONSER', to: '/jobbannonser' }
];
Expand All @@ -58,20 +58,20 @@ type State = {
};
export const OnOther = styled('div')`
@media only screen and (max-width: 767px) {
@media only screen and (max-width: 991px) {
display: none;
}
`;
export const OnMobile = styled('div')`
display: none;

@media only screen and (max-width: 767px) {
@media only screen and (max-width: 991px) {
display: block;
}
`;
const ItdageneLogo = styled('img')`
height: 60px;
@media only screen and (max-width: 767px) {
@media only screen and (max-width: 991px) {
height: 35px;
}
`;
Expand Down

0 comments on commit 6492ed5

Please sign in to comment.