Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
891
Issues
891
List
Boards
Labels
Service Desk
Milestones
Merge Requests
50
Merge Requests
50
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Security & Compliance
Security & Compliance
Dependency List
Packages
Packages
List
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Compare Revisions
a53208848c3d59cb46ac1583b5666c87758d0333...5a79ffb2d254b3fd7ec6c8f55c0e81c80979b822
Source
5a79ffb2d254b3fd7ec6c8f55c0e81c80979b822
Select Git revision
...
Target
a53208848c3d59cb46ac1583b5666c87758d0333
Select Git revision
Compare
Commits (2)
(fix): Blog title font size on mobile
· 3fda75a0
Emiliano Balbuena
authored
22 hours ago
3fda75a0
(fix): Margin too big for non-Pro components
· 5a79ffb2
Emiliano Balbuena
authored
21 hours ago
5a79ffb2
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
18 additions
and
1 deletion
+18
-1
blog.scss
src/app/modules/blogs/blog.scss
+4
-0
modal.component.scss
src/app/modules/media/modal/modal.component.scss
+4
-0
channel.component.scss
src/app/modules/pro/channel/channel.component.scss
+1
-1
home.component.scss
src/app/modules/pro/channel/home/home.component.scss
+5
-0
list.component.scss
src/app/modules/pro/channel/list/list.component.scss
+3
-0
login.component.scss
src/app/modules/pro/channel/login/login.component.scss
+1
-0
No files found.
src/app/modules/blogs/blog.scss
View file @
5a79ffb2
...
...
@@ -65,6 +65,10 @@
font-family
:
'Roboto'
,
Helvetica
,
sans-serif
;
text-rendering
:
optimizeLegibility
;
-webkit-font-smoothing
:
antialiased
;
@media
only
screen
and
(
max-width
:
$min-tablet
)
{
font-size
:
24px
;
}
}
.minds-blog-body
img
{
@media
screen
and
(
max-width
:
891px
)
{
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/media/modal/modal.component.scss
View file @
5a79ffb2
...
...
@@ -118,6 +118,10 @@ m-overlay-modal {
text-rendering
:
optimizeLegibility
;
-webkit-font-smoothing
:
antialiased
;
text-align
:
left
;
@media
only
screen
and
(
max-width
:
$min-tablet
)
{
font-size
:
24px
;
}
}
p
{
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/pro/channel/channel.component.scss
View file @
5a79ffb2
...
...
@@ -205,7 +205,7 @@ m-pro--channel {
.m-proChannel__body
{
grid-row
:
2
/
span
1
;
grid-column
:
1
/
span
12
;
padding
:
0
32px
;
padding
:
0
;
@media
screen
and
(
max-width
:
$max-mobile
)
{
grid-row
:
2
/
span
2
;
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/pro/channel/home/home.component.scss
View file @
5a79ffb2
m-pro--channel-home
{
display
:
block
;
padding
:
0
32px
;
}
.m-pro--channel-home
{
m-pro--channel--categories
{
margin
:
16px
0
32px
;
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/pro/channel/list/list.component.scss
View file @
5a79ffb2
m-pro--channel-list
{
display
:
block
;
padding
:
0
32px
;
h1
{
font-size
:
72px
;
font-weight
:
600
;
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/pro/channel/login/login.component.scss
View file @
5a79ffb2
m-pro--channel-login
{
display
:
flex
;
padding
:
0
32px
;
align-items
:
center
;
justify-content
:
flex-end
;
...
...
This diff is collapsed.
Click to expand it.