Skip to content

Commit 6850e43

Browse files
authored
Merge pull request #2132 from StoDevX/center-bullets
Center bullets vertically in Markdown text
2 parents d077886 + 05380c9 commit 6850e43

File tree

3 files changed

+19
-21
lines changed

3 files changed

+19
-21
lines changed

data/privacy.md

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,23 @@
22

33
This privacy policy has been compiled to better serve those who are concerned with how their 'Personally Identifiable Information' (PII) is being used online. PII, as described in US privacy law and information security, is information that can be used on its own or with other information to identify, contact, or locate a single person, or to identify an individual in context. Please read our privacy policy carefully to get a clear understanding of how we collect, use, protect or otherwise handle your Personally Identifiable Information in accordance with our website.
44

5-
> What personal information do we collect from the people that visit our blog, website or app? When do we collect information?
5+
## Introduction
6+
7+
### What personal information do we collect from the people that visit our blog, website or app? When do we collect information?
68

79
We collect information from you when you register on our site or enter information on our site.
810

9-
> How do we use your information?
11+
### How do we use your information?
1012

1113
We may use the information we collect from you when you register, make a purchase, sign up for our newsletter, respond to a survey or marketing communication, surf the website, or use certain other site features in the following ways:
1214

1315
- To improve our website in order to better serve you.
1416

15-
> How do we protect your information?
17+
### How do we protect your information?
1618

1719
Our website is scanned on a regular basis for security holes and known vulnerabilities in order to make your visit to our site as safe as possible. We use regular Malware Scanning. Your personal information is contained behind secured networks and is only accessible by a limited number of persons who have special access rights to such systems, and are required to keep the information confidential. In addition, all sensitive/credit information you supply is encrypted via Secure Socket Layer (SSL) technology. We implement a variety of security measures when a user places an order enters, submits, or accesses their information to maintain the safety of your personal information. All transactions are processed through a gateway provider and are not stored or processed on our servers.
1820

19-
> Do we use 'cookies'?
21+
### Do we use 'cookies'?
2022

2123
We do not use cookies for tracking purposes.
2224

@@ -44,9 +46,7 @@ According to CalOPPA, we agree to the following:
4446

4547
Users can visit our site anonymously. Once this privacy policy is created, we will add a link to it on our home page or as a minimum, on the first significant page after entering our website. Our Privacy Policy link includes the word 'Privacy' and can be easily be found on the page specified above.
4648

47-
You will be notified of any Privacy Policy changes:
48-
49-
- On our Privacy Policy Page
49+
You will be notified of any Privacy Policy changes on our Privacy Policy Page.
5050

5151
## COPPA (Children Online Privacy Protection Act)
5252

@@ -60,13 +60,9 @@ The Fair Information Practices Principles form the backbone of privacy law in th
6060

6161
In order to be in line with Fair Information Practices we will take the following responsive action, should a data breach occur:
6262

63-
We will notify you via email
64-
65-
- Within 1 business day
66-
67-
We will notify the users via in-site notification
63+
We will notify you via email within 1 business day.
6864

69-
- Within 1 business day
65+
We will notify the users via in-site notification within 1 business day.
7066

7167
We also agree to the Individual Redress Principle which requires that individuals have the right to legally pursue enforceable rights against data collectors and processors who fail to adhere to the law. This principle requires not only that individuals have enforceable rights against data users, but also that individuals have recourse to courts or government agencies to investigate and/or prosecute non-compliance by data processors.
7268

@@ -98,4 +94,4 @@ Student Government Assoc. ATTN: Webmaster
9894
Northfield, MN 55057 USA
9995
10096

101-
Last Edited on 2017-10-02
97+
Last Edited on 2018-01-14

source/views/components/markdown/formatting.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import {SelectableText} from './selectable'
55

66
export const Paragraph = glamorous(SelectableText)({
77
marginVertical: 3,
8+
paddingRight: 4,
89
})
910

1011
export const BlockQuote = glamorous(Paragraph)({
Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
// @flow
22

33
import * as React from 'react'
4-
import {Text} from 'react-native'
5-
import glamorous from 'glamorous-native'
4+
import glamorous, {View, Text} from 'glamorous-native'
65
import {Paragraph} from './formatting'
76

87
// the list itself
9-
export const List = glamorous.view({})
8+
export const List = glamorous(View)({})
109

1110
// the list item's text
12-
export const ListText = glamorous(Paragraph)({})
11+
export const ListText = glamorous(Paragraph)({
12+
flex: 1,
13+
})
1314

1415
// the list item's container box thing
1516
type Props = {
@@ -19,10 +20,10 @@ type Props = {
1920
export class ListItem extends React.PureComponent<Props> {
2021
render() {
2122
return (
22-
<glamorous.View flexDirection="row">
23-
<Text></Text>
23+
<View alignItems="center" flexDirection="row">
24+
<Text paddingRight={4}></Text>
2425
<ListText {...this.props} />
25-
</glamorous.View>
26+
</View>
2627
)
2728
}
2829
}

0 commit comments

Comments
 (0)