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 = () => { ...@@ -13,10 +13,10 @@ export const About = () => {
<Card title={<Title>About</Title>}> <Card title={<Title>About</Title>}>
<Paragraph> Movie Base is database of movies.</Paragraph> <Paragraph> Movie Base is database of movies.</Paragraph>
<Paragraph> <Paragraph>
{" "}
It is possible to view popular movies, search for your favourites 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>
<Paragraph>Authors: Lukáš Kratochvíl, Martin Korec, Tomáš Havlíček</Paragraph>
</Card> </Card>
</Space> </Space>
</Typography> </Typography>
......
...@@ -41,7 +41,7 @@ export const MoviePage = () => { ...@@ -41,7 +41,7 @@ export const MoviePage = () => {
style={{ padding: "5%" }} style={{ padding: "5%" }}
> >
<Descriptions.Item label="Title picture" span={3}> <Descriptions.Item label="Title picture" span={3}>
<Image src={movie.picture}></Image> <Image height={400} src={movie.picture}></Image>
</Descriptions.Item> </Descriptions.Item>
<Descriptions.Item label="Name" span={2}> <Descriptions.Item label="Name" span={2}>
{movie.name} {movie.name}
......
...@@ -11,7 +11,7 @@ interface IPreviewBoxProps { ...@@ -11,7 +11,7 @@ interface IPreviewBoxProps {
export const PreviewBox: React.FC<IPreviewBoxProps> = ({ title, movies }) => { export const PreviewBox: React.FC<IPreviewBoxProps> = ({ title, movies }) => {
return ( return (
<Card title={title}> <Card title={title}>
<Row justify="space-evenly" gutter={50}> <Row justify="space-evenly" align="bottom" gutter={50}>
{movies.map((movie) => { {movies.map((movie) => {
return ( return (
<Col flex={1}> <Col flex={1}>
......