Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
347
Merge Requests
57
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
7c193407
Commit
7c193407
authored
45 minutes ago
by
Emiliano Balbuena
Browse files
Options
Download
(fix): Remove CSS grid tiles minimum size constraints
parent
d47a40bc
fix/css-grid-cell-overflow
1 merge request
!711
WIP: Fix CSS Grid for Pro channel tiles
Pipeline
#107325256
failed with stages
in 26 minutes and 7 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
+9
-4
src/app/modules/pro/channel/home/home.component.scss
View file @
7c193407
...
...
@@ -51,6 +51,11 @@ m-proChannel__home {
@media
screen
and
(
max-width
:
$max-mobile
)
{
width
:
100%
;
}
>
*
{
min-width
:
0
;
min-height
:
0
;
}
}
.m-proChannelHome__featuredContent
{
...
...
This diff is collapsed.
src/app/modules/pro/channel/list/list.component.scss
View file @
7c193407
...
...
@@ -84,15 +84,15 @@ m-pro--channel-list {
list-style
:
none
;
padding
:
0
;
@media
screen
and
(
max-width
:
$max-mobile
)
{
grid-template-columns
:
100%
;
}
>
*
{
min-width
:
0
;
min-height
:
0
;
}
@media
screen
and
(
max-width
:
$max-mobile
)
{
grid-template-columns
:
100%
;
}
&
.m-proChannelListContent__normalList
{
grid-template-columns
:
100%
;
...
...
This diff is collapsed.
Please
register
or
sign in
to comment