Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • xhavlic/pb138-film-database-group-project
1 result
Show changes
Commits on Source (4)
......@@ -13,10 +13,10 @@ export const About = () => {
<Card title={<Title>About</Title>}>
<Paragraph> Movie Base is database of movies.</Paragraph>
<Paragraph>
{" "}
It is possible to view popular movies, search for your favourites
or checkout details of every movie possible{" "}
or checkout details of every movie in existence (or at least in our database)
</Paragraph>
<Paragraph>Authors: Lukáš Kratochvíl, Martin Korec, Tomáš Havlíček</Paragraph>
</Card>
</Space>
</Typography>
......
......@@ -41,7 +41,7 @@ export const MoviePage = () => {
style={{ padding: "5%" }}
>
<Descriptions.Item label="Title picture" span={3}>
<Image src={movie.picture}></Image>
<Image height={400} src={movie.picture}></Image>
</Descriptions.Item>
<Descriptions.Item label="Name" span={2}>
{movie.name}
......
......@@ -11,7 +11,7 @@ interface IPreviewBoxProps {
export const PreviewBox: React.FC<IPreviewBoxProps> = ({ title, movies }) => {
return (
<Card title={title}>
<Row justify="space-evenly" gutter={50}>
<Row justify="space-evenly" align="bottom" gutter={50}>
{movies.map((movie) => {
return (
<Col flex={1}>
......