Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Mobile
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
221
Merge Requests
13
Security & Compliance
Packages
Analytics
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Minds
Minds Mobile
Commits
156bd780
Commit
156bd780
authored
1 hour ago
by
Juan Manuel Solaro
Browse files
Options
Download
(chore) use themes colors for notifications
parent
c18978b0
new-navigation-designs
1 merge request
!504
WIP: New navigation Screens
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
src/notifications/notification/style.js
View file @
156bd780
import
{
StyleSheet
}
from
'
react-native
'
;
import
ThemedStyles
from
'
../../styles/ThemedStyles
'
;
const
styles
=
StyleSheet
.
create
({
container
:
{
...
...
@@ -9,7 +10,7 @@ const styles = StyleSheet.create({
paddingLeft
:
8
,
paddingBottom
:
16
,
paddingRight
:
8
,
borderBottomColor
:
'
#EEE
'
,
borderBottomColor
:
ThemedStyles
.
getColor
(
'
primary_border
'
)
,
borderBottomWidth
:
StyleSheet
.
hairlineWidth
,
},
avatar
:
{
...
...
@@ -17,7 +18,7 @@ const styles = StyleSheet.create({
width
:
36
,
borderRadius
:
18
,
borderWidth
:
StyleSheet
.
hairlineWidth
,
borderColor
:
'
#EEE
'
,
borderColor
:
ThemedStyles
.
getColor
(
'
primary_border
'
)
,
},
body
:
{
marginLeft
:
8
,
...
...
@@ -31,12 +32,12 @@ const styles = StyleSheet.create({
fontWeight
:
'
bold
'
,
},
link
:
{
fontWeight
:
'
bold
'
,
color
:
'
#444
'
,
fontWeight
:
'
600
'
,
color
:
ThemedStyles
.
getColor
(
'
link
'
)
,
},
timestamp
:
{
fontSize
:
11
,
color
:
'
#888
'
,
color
:
ThemedStyles
.
getColor
(
'
secondary_text
'
)
,
},
});
...
...
This diff is collapsed.
Please
register
or
sign in
to comment