Skip to content

Commit e1bcd65

Browse files
committed
mobile testing
1 parent 84f1661 commit e1bcd65

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

src/components/LogCard.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Link } from 'react-router-dom';
2-
import { BookOpen, FilmStrip, GameController, Article, MusicNote, Television, ArrowRight } from '@phosphor-icons/react';
2+
import { BookOpen, FilmStrip, GameController, Article, MusicNote, Television } from '@phosphor-icons/react';
33

44
const categoryIcons = {
55
Book: <BookOpen />,
@@ -38,7 +38,7 @@ const categoryStyles = {
3838
};
3939

4040
const LogCard = ({ log, index, totalLogs }) => {
41-
const { title, category, author, director, platform, source, artist, year, creator, link, date, rating, slug } = log;
41+
const { title, category, author, director, platform, source, artist, year, creator, date, rating, slug } = log;
4242

4343
const cardStyle = categoryStyles[category] || {};
4444

src/index.css

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@
55
body {
66
margin: 0;
77
background-color: #030712;
8-
font-family: 'Space Mono', 'JetBrains Mono', monospace, sans-serif;
8+
/*font-family: 'Space Mono', 'JetBrains Mono', monospace, sans-serif;*/
99
-webkit-font-smoothing: antialiased;
1010
-moz-osx-font-smoothing: grayscale;
1111
}
1212

1313
code {
14-
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
15-
monospace;
14+
/*font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;*/
1615
}
1716

1817
/* Styling for inline code blocks */

0 commit comments

Comments
 (0)