mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-30 05:52:50 +00:00
Add [autoprefixer](https://github.com/postcss/autoprefixer) as a final build step in the CSS pipeline.
43 lines
1.0 KiB
Plaintext
43 lines
1.0 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`server utils autoprefix css 1`] = `
|
|
"/**
|
|
* Copyright (c) 2017-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
.hljs {
|
|
margin-left: -15px;
|
|
margin-right: -15px;
|
|
border: 1px solid #eee;
|
|
border-radius: 6px;
|
|
padding: 15px;
|
|
font-size: 15px;
|
|
max-width: 50rem;
|
|
}
|
|
.hljs.javascript {
|
|
background-color: rgba(247, 223, 30, 0.03);
|
|
}
|
|
.hljs .comment {
|
|
opacity: 0.7;
|
|
}
|
|
::-webkit-input-placeholder {
|
|
color: gray;
|
|
}
|
|
:-ms-input-placeholder {
|
|
color: gray;
|
|
}
|
|
::-ms-input-placeholder {
|
|
color: gray;
|
|
}
|
|
::placeholder {
|
|
color: gray;
|
|
}
|
|
"
|
|
`;
|
|
|
|
exports[`server utils minify css 1`] = `".hljs{margin-left:-15px;margin-right:-15px;border:1px solid #eee;border-radius:6px;padding:15px;font-size:15px;max-width:50rem}.hljs.javascript{background-color:rgba(247,223,30,.03)}.hljs .comment{opacity:.7}::placeholder{color:gray}"`;
|
|
|
|
exports[`server utils minify css 2`] = `[Error: Unexpected "space" found.]`;
|