ducky/web
2015-06-30
Parent:99a43a6d1d30
ducky/web/src/styles/base/_lists.scss
Implement OAuth token refreshing helper. Create an ampersand-sync/XHR request wrapper that will detect when a request fails because an OAuth2 token has expired, and will try to refresh the token then retry the request.
1 ul,
2 ol {
3 list-style-type: none;
4 margin: 0;
5 padding: 0;
7 &%default-ul {
8 list-style-type: disc;
9 margin-bottom: $small-spacing;
10 padding-left: $base-spacing;
11 }
13 &%default-ol {
14 list-style-type: decimal;
15 margin-bottom: $small-spacing;
16 padding-left: $base-spacing;
17 }
18 }
20 dl {
21 margin-bottom: $small-spacing;
23 dt {
24 font-weight: bold;
25 margin-top: $small-spacing;
26 }
28 dd {
29 margin: 0;
30 }
31 }